Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
blaar
fftw
Commits
d8bf8345
Commit
d8bf8345
authored
May 11, 2017
by
Arnaud Blanchard
Browse files
Fix error of CMakeLists empty
parent
6b1b109e
Changes
2
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
d8bf8345
cmake_minimum_required
(
VERSION 2.6
)
subdirs
(
f_fftw
)
\ No newline at end of file
subdirs
(
f_fftw
)
f_fftw/CMakeLists.txt
View file @
d8bf8345
cmake_minimum_required
(
VERSION 2.6
)
project
(
f_fftw
)
find_path
(
FFTW_INCLUDE_DIR fftw3.h
)
find_library
(
FFTW_LIBRARIES NAMES fftw3f
)
find_package
(
blc_channel REQUIRED
)
find_package
(
blc_program REQUIRED
)
add_definitions
(
${
BL_DEFINITIONS
}
)
include_directories
(
${
BL_INCLUDE_DIRS
}
${
FFTW_INCLUDE_DIR
}
)
add_executable
(
f_fftw f_fftw.cpp
)
target_link_libraries
(
f_fftw
${
BL_LIBRARIES
}
${
FFTW_LIBRARIES
}
)
subdirs
(
f_fftw
)
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment