]> Creatis software - FrontAlgorithms.git/blob - appli/CTBronchi/CMakeLists.txt
...
[FrontAlgorithms.git] / appli / CTBronchi / CMakeLists.txt
1 option(fpa_BUILD_CTBronchi "Build bronchi analysis from CT images applications?" OFF)
2 if(fpa_BUILD_CTBronchi)
3   configure_file(
4     CTBronchi_process.sh
5     ${PROJECT_BINARY_DIR}/CTBronchi_process.sh
6     COPYONLY
7     )
8   include_directories(
9     ${PROJECT_SOURCE_DIR}/lib
10   ${PROJECT_BINARY_DIR}/lib
11   ${PROJECT_SOURCE_DIR}/appli
12   ${PROJECT_BINARY_DIR}/appli
13   )
14 set(_pfx fpa_CTBronchi_)
15 set(
16   _examples
17   Process
18   )
19 foreach(_e ${_examples})
20   add_executable(${_pfx}${_e} ${_e}.cxx)
21   target_link_libraries(${_pfx}${_e} fpa)
22 endforeach(_e)
23 endif(fpa_BUILD_CTBronchi)
24
25 ## eof - $RCSfile$