X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=examples%2FCMakeLists.txt;fp=examples%2FCMakeLists.txt;h=0000000000000000000000000000000000000000;hb=247e634a1320371673c4b03bc94195d04fb997f5;hp=30954b7e5b11e283afd3170c70012b9230cf294a;hpb=60785c9e18cab1a338f1ce54551e97a5ddfabac1;p=FrontAlgorithms.git diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt deleted file mode 100644 index 30954b7..0000000 --- a/examples/CMakeLists.txt +++ /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$