]> Creatis software - FrontAlgorithms.git/blob - appli/examples/CMakeLists.txt
122dcee2d899513c435c7c64accecbb1252f55ac
[FrontAlgorithms.git] / appli / examples / CMakeLists.txt
1 SET(
2   SIMPLE_EXAMPLES
3   example_Image_Dijkstra_EndPointDetection_WithoutVTK
4   )
5 FOREACH(EX ${SIMPLE_EXAMPLES})
6   ADD_EXECUTABLE(${EX} ${EX}.cxx)
7   TARGET_LINK_LIBRARIES(${EX} FrontAlgorithms)
8 ENDFOREACH(EX)
9
10 SET(
11   SIMPLE_VTK_EXAMPLES
12   example_Image_RegionGrow_AllPixels
13   example_Image_RegionGrow_AllRGBPixels
14   example_Image_RegionGrow_GaussianModelEstimation
15   example_Image_Dijkstra_CostFromInput
16   example_Image_Dijkstra_CostFromRGBInput
17   example_Image_Dijkstra_DanielssonCost
18   example_Image_Dijkstra_DanielssonCost_TwoSeedsPath
19   example_Image_Dijkstra_EndPointDetection
20   example_Image_Dijkstra_LabelSkeleton
21   example_ShowSkeleton
22   )
23 FOREACH(EX ${SIMPLE_VTK_EXAMPLES})
24   ADD_EXECUTABLE(${EX} ${EX}.cxx)
25   TARGET_LINK_LIBRARIES(
26     ${EX} FrontAlgorithms
27     )
28 ENDFOREACH(EX)
29
30 ## eof - $RCSfile$