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