]> Creatis software - FrontAlgorithms.git/blob - examples/image/RegionGrow/CMakeLists.txt
...
[FrontAlgorithms.git] / examples / image / RegionGrow / CMakeLists.txt
1 ## =========================================================================
2 ## @author Leonardo Florez Valencia (florez-l@javeriana.edu.co)
3 ## =========================================================================
4
5 set(_pfx example_fpa_Image_RegionGrow_)
6 set(
7   _examples
8   Tautology
9   BinaryThreshold
10   Mori
11   )
12 include_directories(${PROJECT_SOURCE_DIR}/lib ${PROJECT_BINARY_DIR}/lib)
13
14 foreach(_t ${_examples})
15   add_executable(${_pfx}${_t} ${_t}.cxx)
16   target_link_libraries(${_pfx}${_t} fpa)
17 endforeach(_t)
18
19 ## eof - $RCSfile$