]> Creatis software - FrontAlgorithms.git/blobdiff - examples/CMakeLists.txt
...
[FrontAlgorithms.git] / examples / CMakeLists.txt
diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt
deleted file mode 100644 (file)
index 30954b7..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-option(BUILD_EXAMPLES "Build cpPlugins-free examples." OFF)
-if(BUILD_EXAMPLES)
-  set(
-    _examples
-    RegionGrow_Tautology
-    RegionGrow_BinaryThreshold
-    RegionGrow_Mori
-    Dijkstra_Gaussian
-    Dijkstra_Maurer
-    SkeletonFilter
-    #CreateMoriInputImage
-    #BronchiiInitialSegmentationWithMori
-    #BronchiiInitialSegmentationWithBinaryThresholdRegionGrow
-    )
-  option(BUILD_EXAMPLE_SANDBOX "Build sandbox example." OFF)
-  if(BUILD_EXAMPLE_SANDBOX)
-    list(APPEND _examples sandbox)
-  endif(BUILD_EXAMPLE_SANDBOX)
-  include_directories(
-    ${PROJECT_SOURCE_DIR}/lib
-    ${PROJECT_BINARY_DIR}/lib
-    )
-  foreach(_e ${_examples})
-    add_executable(fpa_example_${_e} ${_e}.cxx)
-    target_link_libraries(fpa_example_${_e} fpa)
-  endforeach(_e)
-endif(BUILD_EXAMPLES)
-
-## eof - $RCSfile$