]> Creatis software - FrontAlgorithms.git/blob - appli/CTBronchi/CMakeLists.txt
79a58ad24cdb82bba14070aa348e03b11ecbd211
[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     FastRandomWalker
14     SliceBySliceRandomWalker
15     )
16   foreach(_e ${_examples})
17     BuildApplication(
18       ${_pfx}${_e}
19       SOURCE ${_e}.cxx
20       INSTALL
21       RECURRENT
22       LINKS fpa cpPlugins::tclap
23       )
24   endforeach(_e)
25 endif(fpa_BUILD_CTBronchi)
26
27 ## eof - $RCSfile$