X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=CMakeLists.txt;h=fbb741f913a4ec364185111f0cef2d692eab2240;hb=bfec018393d08496c9bf366d94790f2cc5c9c686;hp=a20712bb70526fc4a7d12042e361f393b9276ec6;hpb=2593029cb1c4a272c6502cc9abc82f980d479739;p=bbtk.git diff --git a/CMakeLists.txt b/CMakeLists.txt index a20712b..fbb741f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,18 @@ +#cmake_minimum_required(VERSION 2.4) +#if(COMMAND cmake_policy) + # UNCOMMENT the 3 lines 'cmake_policy(... + # If you are using cmake 2.6 + # We can test it automatically, no JP ? + #cmake_policy(SET CMP0000 OLD) + #cmake_policy(SET CMP0005 NEW) + #cmake_policy(SET CMP0003 NEW) + # endif(COMMAND cmake_policy) + #----------------------------------------------------------------------------- PROJECT(BBTK) #----------------------------------------------------------------------------- + #----------------------------------------------------------------------------- # Set global configuration of the toolkit INCLUDE(kernel/cmake/BBTKRootCMakeLists.cmake) @@ -17,39 +28,3 @@ SUBDIRS(kernel) SUBDIRS(packages) #----------------------------------------------------------------------------- - -#---Documentation------------- -#http://www.cmake.org/Wiki/CMake:Packaging_With_CPack -#http://www.cmake.org/Wiki/CMake:CPackConfiguration -#http://www.cmake.org/Wiki/CMake:Install_Commands - - - -INCLUDE(InstallRequiredSystemLibraries) - -SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Black Box Tool Kit (bbtk) - Creatis-LRMN") -SET(CPACK_PACKAGE_VENDOR "Creatis-LRMN") -SET(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/README.txt") -SET(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE.txt") -SET(CPACK_PACKAGE_VERSION_MAJOR ${BBTK_MAJOR_VERSION}) -SET(CPACK_PACKAGE_VERSION_MINOR ${BBTK_MINOR_VERSION}) -SET(CPACK_PACKAGE_VERSION_PATCH ${BBTK_BUILD_VERSION}) -SET(CPACK_PACKAGE_INSTALL_DIRECTORY "bbtk-${BBTK_MAJOR_VERSION}.${BBTK_MINOR_VERSION}") -IF(WIN32 AND NOT UNIX) - # There is a bug in NSI that does not handle full unix paths properly. Make - # sure there is at least one set of four (4) backlasshes. -#EED SET(CPACK_PACKAGE_ICON "${CMAKE_CURRENT_SOURCE_DIR}/kernel/install/gnome/bbi-icon2.bmp") - SET(CPACK_NSIS_INSTALLED_ICON_NAME "bin/BBI_EXE.exe") - SET(CPACK_NSIS_DISPLAY_NAME "${CPACK_PACKAGE_INSTALL_DIRECTORY} My Famous Project BBTK") - SET(CPACK_NSIS_HELP_LINK "http://www.creatis.insa-lyon.fr/software/bbtk") - SET(CPACK_NSIS_URL_INFO_ABOUT "http://www.creatis.insa-lyon.fr") - SET(CPACK_NSIS_CONTACT "info-dev@creatis.insa-lyon.fr") - SET(CPACK_NSIS_MODIFY_PATH ON) -ELSE(WIN32 AND NOT UNIX) - SET(CPACK_STRIP_FILES "bin/bbi") - SET(CPACK_SOURCE_STRIP_FILES "") -ENDIF(WIN32 AND NOT UNIX) -SET(CPACK_PACKAGE_EXECUTABLES "bbi" "bbs interpreter" ) - - -INCLUDE(CPack)