]> Creatis software - cpPlugins.git/blob - appli/examples/CMakeLists.txt
Merge branch 'master' of ssh://git.creatis.insa-lyon.fr/cpPlugins
[cpPlugins.git] / appli / examples / CMakeLists.txt
1
2 ## =========================
3 ## = Command line programs =
4 ## =========================
5
6 SET(
7   EXAMPLES_PROGRAMS
8   example_TestParameters
9   example_LoadPlugins
10   example_ReadWriteImage
11   ##example_MarchingCubes
12   ##example_OtsuFilter
13   ##example_RGBImageToHSVChannels
14   ##example_RGBImageToYPbPrChannels
15   ## example_ReadImageSeriesWriteImage
16   ## example_ReadQuadEdgeMesh
17   ## example_RenderQuadEdgeMesh
18   ##example_MPR
19   )
20
21
22 FOREACH(prog ${EXAMPLES_PROGRAMS}) 
23   ADD_EXECUTABLE(
24     ${prog}
25     ${prog}.cxx
26     )
27   TARGET_LINK_LIBRARIES(
28     ${prog}
29     cpExtensions
30     cpPlugins_Interface
31     )
32 ENDFOREACH(prog)
33
34 SET(
35   NOPLUGINS_EXAMPLES_PROGRAMS
36   example_ContourWidget
37   example_Test_DoubleClick
38   ## example_ExtractDICOMSeries
39   ## example_ImageGaussianModelEstimator
40   ## example_ReadQuadEdgeMeshWithoutPlugins
41   ## example_RenderQuadEdgeMeshWithoutPlugins
42   ## example_ParallelImageMean
43   ## example_LightCompensation
44   ## example_1DImageGradient
45   ## example_2DImageGradient
46   ## example_3DImageGradient
47   ## example_2DGulsunTekMedialness
48   ## example_3DGulsunTekMedialness
49   ## example_KalmanVelocity
50   )
51 FOREACH(prog ${NOPLUGINS_EXAMPLES_PROGRAMS}) 
52   ADD_EXECUTABLE(
53     ${prog}
54     ${prog}.cxx
55     )
56   TARGET_LINK_LIBRARIES(
57     ${prog}
58     ${ITK_LIBRARIES}
59     cpExtensions
60     )
61 ENDFOREACH(prog)
62
63 ## eof - $RCSfile$