X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=CMakeLists.txt;h=823705ed308fc168bc3f9b7f8cc7c865437d136d;hb=35ad6a2af5b7b0f93d342f7d10d5d669e92ca6d5;hp=93dd1ef88a9b4d8c4f99a417e33e5ae7f2e6dfb4;hpb=0eec827392a9544a6e61fce74c5b430c1873f5a2;p=cpPlugins.git diff --git a/CMakeLists.txt b/CMakeLists.txt index 93dd1ef..823705e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,6 +6,7 @@ CMAKE_MINIMUM_REQUIRED(VERSION 2.8) SET( policies + CMP0015 CMP0020 CMP0042 ) @@ -20,13 +21,10 @@ ENDFOREACH(policy) ## ================ PROJECT(cpPlugins) -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}" - ) +SET(prj_MAJ_VER "0") +SET(prj_MIN_VER "0") +SET(prj_REL_VER "2") +SET(prj_VERSION "${prj_MAJ_VER}.${prj_MIN_VER}.${prj_REL_VER}") ## =========== ## = Options = @@ -35,10 +33,33 @@ SET( OPTION(USE_QT4 "Build Qt4-based code" OFF) OPTION(BUILD_EXAMPLES "Build examples" OFF) +SET(LIBRARY_TYPE SHARED) + ## ======================== ## = Packages and options = ## ======================== +# Force c++11 language version +# NOTE: It seems that by default on Visual Studio Compiler supports c++11, +# so it only need to be test on other O.S. +IF(NOT MSVC) + INCLUDE(CheckCXXCompilerFlag) + CHECK_CXX_COMPILER_FLAG("-std=c++11" COMPILER_SUPPORTS_CXX11) + IF(COMPILER_SUPPORTS_CXX11) + SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") + ELSE(COMPILER_SUPPORTS_CXX11) + CHECK_CXX_COMPILER_FLAG("-std=c++0x" COMPILER_SUPPORTS_CXX0X) + IF(COMPILER_SUPPORTS_CXX0X) + SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x") + ELSE(COMPILER_SUPPORTS_CXX0X) + MESSAGE( + FATAL_ERROR + "The compiler ${CMAKE_CXX_COMPILER} has no C++11 support." + ) + ENDIF(COMPILER_SUPPORTS_CXX0X) + ENDIF(COMPILER_SUPPORTS_CXX11) +ENDIF(NOT MSVC) + # Prepare header to build shared libs (windows) INCLUDE(GenerateExportHeader) @@ -82,7 +103,7 @@ ENDIF(USE_QT4) ## ================================================ IF(PROJECT_BINARY_DIR STREQUAL ${PROJECT_SOURCE_DIR}) - MESSAGE(FATAL_ERROR "Building in the source tree is not allowed") + MESSAGE(FATAL_ERROR "Building in the source tree is not allowed.") ENDIF(PROJECT_BINARY_DIR STREQUAL ${PROJECT_SOURCE_DIR}) ## ===================================== @@ -115,6 +136,22 @@ IF(WIN32 OR APPLE) ) ENDIF(WIN32 OR APPLE) +## ======================= +## = Local bash commands = +## ======================= +SET( + bash_PROGRAMS + cpPlugins_createHost + ) + +FOREACH(prog ${bash_PROGRAMS}) + IF(MSVC) + SET(${prog}_APP ${PROJECT_BINARY_DIR}/$(ConfigurationName)/${prog}) + ELSE(MSVC) + SET(${prog}_APP ${PROJECT_BINARY_DIR}/${prog}) + ENDIF(MSVC) +ENDFOREACH(prog) + ## =========================== ## = Subdirs containing code = ## ===========================