]> Creatis software - FrontAlgorithms.git/blob - appli/CTBronchi/CMakeLists.txt
5b20064316bd82613190dbcd6c40baf242f78364
[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     MoriSegmentation
18     MoriLabelling
19     RandomWalker
20     )
21   foreach(_e ${_examples})
22     add_executable(${_pfx}${_e} ${_e}.cxx)
23     target_link_libraries(${_pfx}${_e} ivq::ivq fpa)
24   endforeach(_e)
25 endif(fpa_BUILD_CTBronchi)
26
27 ## eof - $RCSfile$