]> Creatis software - cpPlugins.git/blobdiff - cmake/Options.cmake
Moved to version 1.0
[cpPlugins.git] / cmake / Options.cmake
diff --git a/cmake/Options.cmake b/cmake/Options.cmake
deleted file mode 100644 (file)
index 6800c63..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-## ===============================
-## == Some configurable options ==
-## ===============================
-
-SET(cpPlugins_NUMBER_OF_FILES "10" CACHE STRING "Number of compiled files.")
-SET(cpPlugins_PROCESS_DIMS "1;2;3" CACHE STRING "Accepted processing dimensions.")
-SET(cpPlugins_VISUAL_DIMS "2;3" CACHE STRING "Accepted visual dimensions.")
-
-OPTION(BUILD_EXAMPLES "Build examples" OFF)
-OPTION(BUILD_QT4_COMPONENTS "Build Qt4-based code" OFF)
-
-SET(
-  _all_configs
-  cpPlugins_PROCESS_DIMS
-  cpPlugins_VISUAL_DIMS
-  )
-SET(_real_configs)
-FOREACH(_cfg ${_all_configs})
-  FOREACH(_type ${${_cfg}})
-    LIST(APPEND _real_configs "${_cfg}_${_type}")
-  ENDFOREACH(_type)
-ENDFOREACH(_cfg)
-SET(cpPlugins_ALL_CONFIGS "${_real_configs}" CACHE INTERNAL "All valid configurations." FORCE)
-
-## eof - $RCSfile$