]> Creatis software - FrontAlgorithms.git/blob - examples/image/RandomWalker/CMakeLists.txt
90fd7f7e67476635ed7377cb4bdab50b5aacd6dc
[FrontAlgorithms.git] / examples / image / RandomWalker / CMakeLists.txt
1 ## =========================================================================
2 ## @author Leonardo Florez Valencia (florez-l@javeriana.edu.co)
3 ## =========================================================================
4
5 set(_pfx example_fpa_Image_RandomWalker_)
6 set(
7   _examples
8   Gaussian
9   )
10 if(Eigen3_FOUND)
11   set(
12     _examples
13     ${_examples}
14     Original
15     CompareRandomWalkers
16     )
17 endif(Eigen3_FOUND)
18 include_directories(${PROJECT_SOURCE_DIR}/lib ${PROJECT_BINARY_DIR}/lib)
19
20 foreach(_t ${_examples})
21   add_executable(${_pfx}${_t} ${_t}.cxx)
22   target_link_libraries(${_pfx}${_t} fpa)
23 endforeach(_t)
24
25 ## eof - $RCSfile$