updates cmake
This commit is contained in:
parent
3483724cff
commit
5e3dfb30c7
1 changed files with 8 additions and 5 deletions
|
@ -7,17 +7,20 @@ configure_file (
|
||||||
"AwesomeAttractorConfig.h"
|
"AwesomeAttractorConfig.h"
|
||||||
)
|
)
|
||||||
|
|
||||||
add_executable (
|
FIND_PACKAGE( Boost 1.47 COMPONENTS program_options REQUIRED )
|
||||||
AwesomeAttractor
|
INCLUDE_DIRECTORIES( ${Boost_INCLUDE_DIR} )
|
||||||
|
|
||||||
|
add_executable (AwesomeAttractor
|
||||||
main.cpp
|
main.cpp
|
||||||
Attractor.cpp
|
Attractor.cpp
|
||||||
AttractorKernel.cpp
|
AttractorKernel.cpp
|
||||||
Canvas.cpp
|
|
||||||
Projector.cpp
|
Projector.cpp
|
||||||
stfu/stf.cpp
|
stfu/stf.cpp
|
||||||
canvae/Raw.cpp
|
|
||||||
projectors/Normalizer.cpp
|
projectors/Normalizer.cpp
|
||||||
projectors/Projection.cpp
|
projectors/Projection.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
target_link_libraries (AwesomeAttractor png)
|
target_link_libraries (AwesomeAttractor
|
||||||
|
png
|
||||||
|
${Boost_LIBRARIES}
|
||||||
|
)
|
||||||
|
|
Reference in a new issue