]> Creatis software - cpPlugins.git/blobdiff - appli/examples/CMakeLists.txt
Accessors added to gaussian model estimator
[cpPlugins.git] / appli / examples / CMakeLists.txt
index 705394aab662de957f1f60a00fd1c292a3f8d0cd..43938d9fb53c7c3409135b8ad7d99f471d70565e 100644 (file)
@@ -5,13 +5,13 @@
 
 SET(
   EXAMPLES_PROGRAMS
+  example_TestParameters
   example_LoadPlugins
   example_ReadWriteImage
   example_ReadImageSeriesWriteImage
   example_ReadQuadEdgeMesh
-  example_ReadQuadEdgeMeshWithoutPlugins
   example_RenderQuadEdgeMesh
-  example_RenderQuadEdgeMeshWithoutPlugins
+  example_RGBImageToHSVChannels
   example_MPR
   )
 
@@ -26,4 +26,21 @@ FOREACH(prog ${EXAMPLES_PROGRAMS})
     )
 ENDFOREACH(prog)
 
+SET(
+  NOPLUGINS_EXAMPLES_PROGRAMS
+  example_ImageGaussianModelEstimator
+  example_ReadQuadEdgeMeshWithoutPlugins
+  example_RenderQuadEdgeMeshWithoutPlugins
+  )
+FOREACH(prog ${NOPLUGINS_EXAMPLES_PROGRAMS}) 
+  ADD_EXECUTABLE(
+    ${prog}
+    ${prog}.cxx
+    )
+  TARGET_LINK_LIBRARIES(
+    ${prog}
+    ${ITK_LIBRARIES}
+    )
+ENDFOREACH(prog)
+
 ## eof - $RCSfile$