X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?p=creaRigidRegistration.git;a=blobdiff_plain;f=CMakeLists.txt;h=5ebed30acb3de3b8d136cd6a2dc216d3b57e46e5;hp=ae96003a855bb841d0b6faa2a7ffcc366dcb02e4;hb=f298b8329ac9357d1aed3ebfd5a79eae67315eb9;hpb=e4ca20a12ebecb12fe0f5c0d76d658b01ddab087 diff --git a/CMakeLists.txt b/CMakeLists.txt index ae96003..5ebed30 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,13 +2,20 @@ # # Unless you are an experimented cmake user, # have a look at : -# http://www.creatis.insa-lyon.fr/creatools/GettingStarted_creaTools +# http://www.creatis.insa-lyon.fr/site/fr/CreatoosGettingStarted-v2.0.X # before starting. # # --------------------------------- CMAKE_MINIMUM_REQUIRED(VERSION 2.6) +# for CMake 2.6 corrected behaviour (see "cmake --help-policy CMP0003") +IF(COMMAND cmake_policy AND ${CMAKE_MAJOR_VERSION} EQUAL 2 AND ${CMAKE_MINOR_VERSION} GREATER 4) + CMAKE_POLICY(SET CMP0003 NEW) + CMAKE_POLICY(SET CMP0005 NEW) + CMAKE_POLICY(SET CMP0011 NEW) +ENDIF(COMMAND cmake_policy AND ${CMAKE_MAJOR_VERSION} EQUAL 2 AND ${CMAKE_MINOR_VERSION} GREATER 4) + ################################### PROJECT(creaRigidRegistration) ###################################