CMAKE_MINIMUM_REQUIRED(VERSION 2.8)
-IF(POLICY CMP0020)
- CMAKE_POLICY(SET CMP0020 NEW)
-ENDIF(POLICY CMP0020)
+## ============
+## = Policies =
+## ============
+
+SET(
+ policies
+ CMP0015
+ CMP0020
+ CMP0042
+ )
+FOREACH(policy ${policies})
+ IF(POLICY ${policy})
+ CMAKE_POLICY(SET ${policy} NEW)
+ ENDIF(POLICY ${policy})
+ENDFOREACH(policy)
## ================
## = Project name =
## ================
PROJECT(FrontAlgorithms)
-SET(FrontAlgorithms_MAJOR_VERSION "0")
-SET(FrontAlgorithms_MINOR_VERSION "0")
-SET(FrontAlgorithms_RELEASE_VERSION "1")
-SET(FrontAlgorithms_VERSION "${FrontAlgorithms_MAJOR_VERSION}.${FrontAlgorithms_MINOR_VERSION}.${FrontAlgorithms_RELEASE_VERSION}")
+SET(prj_MAJOR_VERSION "0")
+SET(prj_MINOR_VERSION "0")
+SET(prj_RELEASE_VERSION "1")
+SET(
+ prj_VERSION
+ "${prj_MAJOR_VERSION}.${prj_MINOR_VERSION}.${prj_RELEASE_VERSION}"
+ )
## ===========
## = Options =
INCLUDE(GenerateExportHeader)
-FIND_PACKAGE(ITK REQUIRED)
-INCLUDE(${ITK_USE_FILE})
-
-FIND_PACKAGE(VTK REQUIRED)
-INCLUDE(${VTK_USE_FILE})
-
-IF(ITKVtkGlue_LOADED)
- MESSAGE(FATAL_ERROR "ITKVtkGlue module is available. Please re-compile your ITK without it. It could lead to nasty compilation problems... Just waiting for Kitware to solve it.")
-ENDIF(ITKVtkGlue_LOADED)
-
-OPTION(USE_cpPlugins "Build cpPlugins based stuff" OFF)
-IF(USE_cpPlugins)
- FIND_PACKAGE(cpPlugins REQUIRED)
-ENDIF(USE_cpPlugins)
+# Find cpPlugins
+FIND_PACKAGE(cpPlugins REQUIRED)
## ================================================
## = Do not allow to build inside the source tree =