]> Creatis software - FrontAlgorithms.git/blob - appli/CTBronchi/CMakeLists.txt
a5c2b616b7d68268081b02c8cfd2e7dc4f74cc0e
[FrontAlgorithms.git] / appli / CTBronchi / CMakeLists.txt
1 ## =========================================================================
2 ## @author Leonardo Florez-Valencia (florez-l@javeriana.edu.co)
3 ## =========================================================================
4
5 option(fpa_BUILD_CTBronchi "Build bronchi analysis from CT images applications?" OFF)
6 if(fpa_BUILD_CTBronchi)
7   set(_pfx fpa_CTBronchi_)
8   set(
9     _examples
10     Vesselness
11     MoriSegmentation
12     MoriLabelling
13     )
14   foreach(_e ${_examples})
15     BuildApplication(
16       ${_pfx}${_e}
17       SOURCE ${_e}.cxx
18       INSTALL
19       RECURRENT
20       LINKS fpa cpPlugins::tclap
21       )
22   endforeach(_e)
23 endif(fpa_BUILD_CTBronchi)
24
25 ## eof - $RCSfile$