]> Creatis software - FrontAlgorithms.git/blob - appli/examples/CMakeLists.txt
Big bug smashed
[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_ConnectedPixels
15   example_Image_RegionGrow_ConnectedRGBPixels
16   example_Image_Dijkstra_AbsoluteDifferenceCost
17   example_Image_Dijkstra_EndPointDetection
18   #  example_Image_RegionGrow_GaussianModelEstimation
19   #  example_Image_IncrementalRegionGrow_Thresholds
20   #  example_Image_Dijkstra_CostFromInput
21   #  example_Image_Dijkstra_CostFromRGBInput
22   #  example_Image_Dijkstra_DanielssonCost
23   #  example_Image_Dijkstra_DanielssonCost_TwoSeedsPath
24   #  example_Image_Dijkstra_LabelSkeleton
25   #  example_ShowSkeleton
26   #  example_CircleOfWillis
27   )
28 FOREACH(EX ${SIMPLE_VTK_EXAMPLES})
29   ADD_EXECUTABLE(${EX} ${EX}.cxx)
30   TARGET_LINK_LIBRARIES(
31     ${EX} FrontAlgorithms
32     )
33 ENDFOREACH(EX)
34
35 ## eof - $RCSfile$