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