]> Creatis software - FrontAlgorithms.git/blob - tests/image/RandomWalker/CMakeLists.txt
859b3a6aaffd196fda90d81562c216a4dad528a5
[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   )
12 include_directories(${PROJECT_SOURCE_DIR}/lib ${PROJECT_BINARY_DIR}/lib)
13
14 foreach(_t ${_tests})
15   add_executable(${_pfx}${_t} ${_t}.cxx)
16   target_link_libraries(${_pfx}${_t} fpa)
17 endforeach(_t)
18
19 ## eof - $RCSfile$