]> Creatis software - cpPlugins.git/blobdiff - appli/examples/extensions/CMakeLists.txt
...
[cpPlugins.git] / appli / examples / extensions / CMakeLists.txt
diff --git a/appli/examples/extensions/CMakeLists.txt b/appli/examples/extensions/CMakeLists.txt
deleted file mode 100644 (file)
index 0edb012..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-## ============================
-## == Configure source files ==
-## ============================
-
-FILE(
-  GLOB all_SOURCE_CXX_FILES RELATIVE
-  "${CMAKE_CURRENT_SOURCE_DIR}"
-  "${CMAKE_CURRENT_SOURCE_DIR}/*.cxx"
-  )
-
-## ==========================
-## == Compile source files ==
-## ==========================
-
-FOREACH(source ${all_SOURCE_CXX_FILES})
-  GET_FILENAME_COMPONENT(name ${source} NAME_WE)
-  ADD_EXECUTABLE(${name} ${source})
-  TARGET_LINK_LIBRARIES(${name} ${cpExtensions_LIB})
-ENDFOREACH(source)
-
-## eof - $RCSfile$