]> Creatis software - FrontAlgorithms.git/blob - appli/CTBronchi/CMakeLists.txt
...
[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   BuildLibrary(
8     fpa_CTBronchi SHARED
9     INSTALL_ALL
10     SOURCE
11     Filter.h Filter.hxx
12     Image.h Image.hxx
13     Process.h Process.cxx
14     LINKS fpa cpPlugins::tclap
15     )
16
17   BuildApplication(
18     fpa_CTBronchi_CommandLineProcess
19     SOURCE CommandLineProcess.cxx
20     INSTALL
21     RECURRENT
22     LINKS fpa_CTBronchi
23     )
24
25 endif(fpa_BUILD_CTBronchi)
26
27 #option(fpa_BUILD_CTBronchi "Build bronchi analysis from CT images applications?" OFF)
28 #if(fpa_BUILD_CTBronchi)
29 #  set(_pfx fpa_CTBronchi_)
30 #  set(
31 #    _examples
32 #    Vesselness
33 #    MoriSegmentation
34 #    MoriLabelling
35 #    FastRandomWalker
36 #    SliceBySliceRandomWalker
37 #    AndSegmentations
38 #    Skeleton
39 #    )
40 #  foreach(_e ${_examples})
41 #    BuildApplication(
42 #      ${_pfx}${_e}
43 #      SOURCE ${_e}.cxx
44 #      INSTALL
45 #      RECURRENT
46 #      LINKS fpa cpPlugins::tclap
47 #      )
48 #  endforeach(_e)
49
50 #  configure_file(
51 #    Process.sh
52 #    ${PROJECT_BINARY_DIR}/${_pfx}Process.sh
53 #    COPYONLY
54 #    )
55 #  install(
56 #    FILES ${PROJECT_BINARY_DIR}/${_pfx}Process.sh
57 #    DESTINATION bin
58 #    )
59 #endif(fpa_BUILD_CTBronchi)
60
61 ## eof - $RCSfile$