]> Creatis software - FrontAlgorithms.git/blob - tests/image/CMakeLists.txt
c51ed1858267349084a18045235d1c8a0f05a2de
[FrontAlgorithms.git] / tests / image / CMakeLists.txt
1 set(_pfx test_fpa_image_)
2 set(
3   _examples
4   RegionGrow_Tautology
5   Dijkstra_Identity
6   Dijkstra_Gaussian
7   RandomWalker
8   SkeletonFilter
9   SkeletonToPolyData
10   )
11 foreach(_e ${_examples})
12   add_executable(${_pfx}${_e} ${_e}.cxx)
13   if(ivq_FOUND)
14     target_link_libraries(${_pfx}${_e} fpa ivq::ivq)
15   else(ivq_FOUND)
16     target_link_libraries(${_pfx}${_e} fpa)
17   endif(ivq_FOUND)
18 endforeach(_e)
19
20 ## eof - $RCSfile$