]> Creatis software - cpPlugins.git/blobdiff - appli/plugins/CMakeLists.txt
...
[cpPlugins.git] / appli / plugins / CMakeLists.txt
diff --git a/appli/plugins/CMakeLists.txt b/appli/plugins/CMakeLists.txt
deleted file mode 100644 (file)
index 59a5076..0000000
+++ /dev/null
@@ -1,22 +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} ${cpPlugins_LIB})
-  SET(${name}_APP ${name} CACHE INTERNAL "plugin program ${name}")
-ENDFOREACH(source)
-
-## eof - $RCSfile$