]> 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   Original
11   CompareRandomWalkers
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$