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