2009-09-28 19:43:28 +04:00
|
|
|
#=============================================================================
|
|
|
|
# CMake - Cross Platform Makefile Generator
|
2012-04-27 00:35:55 +04:00
|
|
|
# Copyright 2000-2012 Kitware, Inc., Insight Software Consortium
|
2009-09-28 19:43:28 +04:00
|
|
|
#
|
|
|
|
# Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
# see accompanying file Copyright.txt for details.
|
|
|
|
#
|
|
|
|
# This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
# See the License for more information.
|
|
|
|
#=============================================================================
|
2012-08-13 21:47:32 +04:00
|
|
|
cmake_minimum_required(VERSION 2.8.2 FATAL_ERROR)
|
|
|
|
set(CMAKE_LEGACY_CYGWIN_WIN32 0) # Remove when CMake >= 2.8.4 is required
|
|
|
|
project(CMake)
|
2008-03-17 23:22:28 +03:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
if(CMAKE_BOOTSTRAP)
|
2011-01-10 17:32:09 +03:00
|
|
|
# Running from bootstrap script. Set local variable and remove from cache.
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_BOOTSTRAP 1)
|
|
|
|
unset(CMAKE_BOOTSTRAP CACHE)
|
|
|
|
endif()
|
2011-01-10 17:32:09 +03:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMake_BIN_DIR ${CMake_BINARY_DIR}/bin)
|
2009-12-08 19:44:28 +03:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
if("${CMake_SOURCE_DIR}" STREQUAL "${CMAKE_SOURCE_DIR}")
|
2009-12-15 01:47:14 +03:00
|
|
|
# Disallow architecture-specific try_run. It may not run on the host.
|
2012-08-13 21:47:32 +04:00
|
|
|
macro(TRY_RUN)
|
|
|
|
if(CMAKE_TRY_COMPILE_OSX_ARCHITECTURES)
|
|
|
|
message(FATAL_ERROR "TRY_RUN not allowed with CMAKE_TRY_COMPILE_OSX_ARCHITECTURES=[${CMAKE_TRY_COMPILE_OSX_ARCHITECTURES}]")
|
|
|
|
else()
|
2009-12-15 01:47:14 +03:00
|
|
|
_TRY_RUN(${ARGV})
|
2012-08-13 21:47:32 +04:00
|
|
|
endif()
|
|
|
|
endmacro()
|
|
|
|
endif()
|
2009-12-15 01:47:14 +03:00
|
|
|
|
2007-05-11 17:02:17 +04:00
|
|
|
#-----------------------------------------------------------------------
|
|
|
|
# a macro to deal with system libraries, implemented as a macro
|
|
|
|
# simply to improve readability of the main script
|
|
|
|
#-----------------------------------------------------------------------
|
2012-08-13 21:47:32 +04:00
|
|
|
macro(CMAKE_HANDLE_SYSTEM_LIBRARIES)
|
2009-06-11 17:04:04 +04:00
|
|
|
# Options have dependencies.
|
2012-08-13 21:47:32 +04:00
|
|
|
include(CMakeDependentOption)
|
2007-05-11 17:02:17 +04:00
|
|
|
|
2009-06-11 19:24:56 +04:00
|
|
|
# Optionally use system xmlrpc. We no longer build or use it by default.
|
2012-08-13 21:47:32 +04:00
|
|
|
option(CTEST_USE_XMLRPC "Enable xmlrpc submission method in CTest." OFF)
|
|
|
|
mark_as_advanced(CTEST_USE_XMLRPC)
|
2009-06-11 19:24:56 +04:00
|
|
|
|
2011-01-10 17:32:09 +03:00
|
|
|
# Allow the user to enable/disable all system utility library options by
|
|
|
|
# defining CMAKE_USE_SYSTEM_LIBRARIES or CMAKE_USE_SYSTEM_LIBRARY_${util}.
|
2012-08-13 21:47:32 +04:00
|
|
|
set(UTILITIES BZIP2 CURL EXPAT LIBARCHIVE ZLIB)
|
|
|
|
foreach(util ${UTILITIES})
|
|
|
|
if(NOT DEFINED CMAKE_USE_SYSTEM_LIBRARY_${util}
|
2011-01-10 17:32:09 +03:00
|
|
|
AND DEFINED CMAKE_USE_SYSTEM_LIBRARIES)
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_USE_SYSTEM_LIBRARY_${util} "${CMAKE_USE_SYSTEM_LIBRARIES}")
|
|
|
|
endif()
|
|
|
|
if(DEFINED CMAKE_USE_SYSTEM_LIBRARY_${util})
|
|
|
|
if(CMAKE_USE_SYSTEM_LIBRARY_${util})
|
|
|
|
set(CMAKE_USE_SYSTEM_LIBRARY_${util} ON)
|
|
|
|
else()
|
|
|
|
set(CMAKE_USE_SYSTEM_LIBRARY_${util} OFF)
|
|
|
|
endif()
|
|
|
|
if(CMAKE_BOOTSTRAP)
|
|
|
|
unset(CMAKE_USE_SYSTEM_LIBRARY_${util} CACHE)
|
|
|
|
endif()
|
|
|
|
string(TOLOWER "${util}" lutil)
|
|
|
|
set(CMAKE_USE_SYSTEM_${util} "${CMAKE_USE_SYSTEM_LIBRARY_${util}}"
|
2011-01-10 17:32:09 +03:00
|
|
|
CACHE BOOL "Use system-installed ${lutil}" FORCE)
|
2012-08-13 21:47:32 +04:00
|
|
|
else()
|
|
|
|
set(CMAKE_USE_SYSTEM_LIBRARY_${util} OFF)
|
|
|
|
endif()
|
2012-08-13 21:50:14 +04:00
|
|
|
endforeach()
|
2012-08-13 21:47:32 +04:00
|
|
|
if(CMAKE_BOOTSTRAP)
|
|
|
|
unset(CMAKE_USE_SYSTEM_LIBRARIES CACHE)
|
|
|
|
endif()
|
2009-06-11 17:04:04 +04:00
|
|
|
|
|
|
|
# Optionally use system utility libraries.
|
2012-08-13 21:47:32 +04:00
|
|
|
option(CMAKE_USE_SYSTEM_LIBARCHIVE "Use system-installed libarchive" "${CMAKE_USE_SYSTEM_LIBRARY_LIBARCHIVE}")
|
2009-06-11 19:24:56 +04:00
|
|
|
CMAKE_DEPENDENT_OPTION(CMAKE_USE_SYSTEM_CURL "Use system-installed curl"
|
2011-01-10 17:32:09 +03:00
|
|
|
"${CMAKE_USE_SYSTEM_LIBRARY_CURL}" "NOT CTEST_USE_XMLRPC" ON)
|
2009-06-11 17:04:04 +04:00
|
|
|
CMAKE_DEPENDENT_OPTION(CMAKE_USE_SYSTEM_EXPAT "Use system-installed expat"
|
2011-01-10 17:32:09 +03:00
|
|
|
"${CMAKE_USE_SYSTEM_LIBRARY_EXPAT}" "NOT CTEST_USE_XMLRPC" ON)
|
2009-06-11 17:04:04 +04:00
|
|
|
CMAKE_DEPENDENT_OPTION(CMAKE_USE_SYSTEM_ZLIB "Use system-installed zlib"
|
2011-01-10 17:32:09 +03:00
|
|
|
"${CMAKE_USE_SYSTEM_LIBRARY_ZLIB}" "NOT CMAKE_USE_SYSTEM_LIBARCHIVE;NOT CMAKE_USE_SYSTEM_CURL" ON)
|
2010-07-29 18:12:09 +04:00
|
|
|
CMAKE_DEPENDENT_OPTION(CMAKE_USE_SYSTEM_BZIP2 "Use system-installed bzip2"
|
2011-01-10 17:32:09 +03:00
|
|
|
"${CMAKE_USE_SYSTEM_LIBRARY_BZIP2}" "NOT CMAKE_USE_SYSTEM_LIBARCHIVE" ON)
|
2009-06-11 17:04:04 +04:00
|
|
|
|
2007-05-11 17:02:17 +04:00
|
|
|
# Mention to the user what system libraries are being used.
|
2012-08-13 21:47:32 +04:00
|
|
|
foreach(util ${UTILITIES})
|
|
|
|
if(CMAKE_USE_SYSTEM_${util})
|
|
|
|
message(STATUS "Using system-installed ${util}")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
|
|
|
endforeach()
|
2007-05-11 17:02:17 +04:00
|
|
|
|
|
|
|
# Inform utility library header wrappers whether to use system versions.
|
2012-08-13 21:47:32 +04:00
|
|
|
configure_file(${CMake_SOURCE_DIR}/Utilities/cmThirdParty.h.in
|
2007-05-11 17:02:17 +04:00
|
|
|
${CMake_BINARY_DIR}/Utilities/cmThirdParty.h
|
|
|
|
@ONLY)
|
|
|
|
|
2012-08-13 21:50:14 +04:00
|
|
|
endmacro()
|
2007-05-11 17:02:17 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_BUILD_ON_VISUAL_STUDIO 0)
|
|
|
|
if(WIN32 AND NOT UNIX AND NOT BORLAND AND NOT MINGW )
|
|
|
|
set(CMAKE_BUILD_ON_VISUAL_STUDIO 1)
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2007-05-11 17:02:17 +04:00
|
|
|
|
|
|
|
|
|
|
|
#-----------------------------------------------------------------------
|
|
|
|
# a macro to determine the generator and ctest executable to use
|
|
|
|
# for testing. Simply to improve readability of the main script.
|
|
|
|
#-----------------------------------------------------------------------
|
2012-08-13 21:47:32 +04:00
|
|
|
macro(CMAKE_SETUP_TESTING)
|
|
|
|
if (NOT DART_ROOT)
|
|
|
|
set(MAKEPROGRAM ${CMAKE_MAKE_PROGRAM})
|
2012-08-13 21:50:14 +04:00
|
|
|
endif ()
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
if(BUILD_TESTING)
|
|
|
|
set(CMAKE_TEST_GENERATOR "" CACHE STRING
|
2007-05-11 17:02:17 +04:00
|
|
|
"Generator used when running tests")
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_TEST_MAKEPROGRAM "" CACHE FILEPATH
|
2007-05-11 17:02:17 +04:00
|
|
|
"Generator used when running tests")
|
2012-08-13 21:47:32 +04:00
|
|
|
if(NOT CMAKE_TEST_GENERATOR)
|
|
|
|
set(CMAKE_TEST_GENERATOR "${CMAKE_GENERATOR}")
|
2013-02-06 01:10:36 +04:00
|
|
|
set(CMAKE_TEST_GENERATOR_TOOLSET "${CMAKE_GENERATOR_TOOLSET}")
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_TEST_MAKEPROGRAM "${MAKEPROGRAM}")
|
2012-08-13 21:50:14 +04:00
|
|
|
else()
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_TEST_DIFFERENT_GENERATOR TRUE)
|
2013-02-06 01:10:36 +04:00
|
|
|
set(CMAKE_TEST_GENERATOR_TOOLSET "")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2007-05-11 17:02:17 +04:00
|
|
|
# Are we testing with the MSVC compiler?
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_TEST_MSVC 0)
|
|
|
|
if(MSVC AND NOT CMAKE_TEST_DIFFERENT_GENERATOR)
|
|
|
|
set(CMAKE_TEST_MSVC 1)
|
2012-08-13 21:50:14 +04:00
|
|
|
else()
|
2012-08-13 21:47:32 +04:00
|
|
|
if("${CMAKE_TEST_GENERATOR}" MATCHES "NMake" OR
|
2007-05-11 17:02:17 +04:00
|
|
|
"${CMAKE_TEST_GENERATOR}" MATCHES "Visual Studio")
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_TEST_MSVC 1)
|
2012-08-15 19:59:36 +04:00
|
|
|
endif()
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_TEST_SYSTEM_LIBRARIES 0)
|
|
|
|
foreach(util CURL EXPAT XMLRPC ZLIB)
|
|
|
|
if(CMAKE_USE_SYSTEM_${util})
|
|
|
|
set(CMAKE_TEST_SYSTEM_LIBRARIES 1)
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
|
|
|
endforeach()
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2007-05-11 17:02:17 +04:00
|
|
|
# This variable is set by cmake, however to
|
|
|
|
# test cmake we want to make sure that
|
|
|
|
# the ctest from this cmake is used for testing
|
|
|
|
# and not the ctest from the cmake building and testing
|
|
|
|
# cmake.
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_CTEST_COMMAND "${CMake_BIN_DIR}/ctest")
|
|
|
|
set(CMAKE_CMAKE_COMMAND "${CMake_BIN_DIR}/cmake")
|
|
|
|
set(CMAKE_CPACK_COMMAND "${CMake_BIN_DIR}/cpack")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2007-05-11 17:02:17 +04:00
|
|
|
|
|
|
|
# configure some files for testing
|
2012-08-13 21:47:32 +04:00
|
|
|
configure_file("${CMAKE_CURRENT_SOURCE_DIR}/Templates/CTestScript.cmake.in"
|
2007-05-11 17:02:17 +04:00
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/CTestScript.cmake"
|
2009-10-20 22:31:10 +04:00
|
|
|
@ONLY)
|
2012-08-13 21:47:32 +04:00
|
|
|
configure_file(${CMake_SOURCE_DIR}/Tests/.NoDartCoverage
|
2007-05-11 17:02:17 +04:00
|
|
|
${CMake_BINARY_DIR}/Tests/.NoDartCoverage)
|
2012-08-13 21:47:32 +04:00
|
|
|
configure_file(${CMake_SOURCE_DIR}/Tests/.NoDartCoverage
|
2007-05-11 17:02:17 +04:00
|
|
|
${CMake_BINARY_DIR}/Modules/.NoDartCoverage)
|
2012-08-13 21:47:32 +04:00
|
|
|
configure_file(${CMake_SOURCE_DIR}/CTestCustom.cmake.in
|
2007-08-31 22:51:09 +04:00
|
|
|
${CMake_BINARY_DIR}/CTestCustom.cmake @ONLY)
|
2012-08-13 21:47:32 +04:00
|
|
|
configure_file(${CMake_SOURCE_DIR}/CTestCustom.ctest.in
|
2007-05-11 17:02:17 +04:00
|
|
|
${CMake_BINARY_DIR}/CTestCustom.ctest @ONLY)
|
2012-08-13 21:47:32 +04:00
|
|
|
if(BUILD_TESTING AND DART_ROOT)
|
|
|
|
configure_file(${CMake_SOURCE_DIR}/CMakeLogo.gif
|
2008-03-04 17:10:05 +03:00
|
|
|
${CMake_BINARY_DIR}/Testing/HTML/TestingResults/Icons/Logo.gif COPYONLY)
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2012-08-13 21:47:32 +04:00
|
|
|
mark_as_advanced(DART_ROOT)
|
|
|
|
mark_as_advanced(CURL_TESTING)
|
2012-08-13 21:50:14 +04:00
|
|
|
endmacro()
|
2007-05-11 17:02:17 +04:00
|
|
|
|
|
|
|
|
2010-10-02 01:23:53 +04:00
|
|
|
# Provide a way for Visual Studio Express users to turn OFF the new FOLDER
|
|
|
|
# organization feature. Default to ON for non-Express users. Express users must
|
|
|
|
# explicitly turn off this option to build CMake in the Express IDE...
|
|
|
|
#
|
2012-08-13 21:47:32 +04:00
|
|
|
option(CMAKE_USE_FOLDERS "Enable folder grouping of projects in IDEs." ON)
|
|
|
|
mark_as_advanced(CMAKE_USE_FOLDERS)
|
2010-10-02 01:23:53 +04:00
|
|
|
|
|
|
|
|
|
|
|
#-----------------------------------------------------------------------
|
|
|
|
# a macro that only sets the FOLDER target property if it's
|
|
|
|
# "appropriate"
|
|
|
|
#-----------------------------------------------------------------------
|
2012-08-13 21:47:32 +04:00
|
|
|
macro(CMAKE_SET_TARGET_FOLDER tgt folder)
|
|
|
|
if(CMAKE_USE_FOLDERS)
|
|
|
|
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
|
2010-10-02 01:23:53 +04:00
|
|
|
|
|
|
|
# Really, I just want this to be an "if(TARGET ${tgt})" ...
|
|
|
|
# but I'm not sure that our min req'd., CMake 2.4.5 can handle
|
|
|
|
# that... so I'm just activating this for now, with a version
|
|
|
|
# compare, and only for MSVC builds.
|
2012-08-13 21:47:32 +04:00
|
|
|
if(MSVC)
|
|
|
|
if(NOT ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} LESS 2.8)
|
|
|
|
set_property(TARGET "${tgt}" PROPERTY FOLDER "${folder}")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
else()
|
|
|
|
set_property(GLOBAL PROPERTY USE_FOLDERS OFF)
|
|
|
|
endif()
|
2012-08-13 21:50:14 +04:00
|
|
|
endmacro()
|
2010-09-03 21:53:22 +04:00
|
|
|
|
2007-05-11 17:02:17 +04:00
|
|
|
|
|
|
|
#-----------------------------------------------------------------------
|
|
|
|
# a macro to build the utilities used by CMake
|
|
|
|
# Simply to improve readability of the main script.
|
|
|
|
#-----------------------------------------------------------------------
|
2012-08-13 21:47:32 +04:00
|
|
|
macro (CMAKE_BUILD_UTILITIES)
|
2011-06-27 22:15:37 +04:00
|
|
|
#---------------------------------------------------------------------
|
|
|
|
# Create the KWIML library for CMake.
|
2012-08-13 21:47:32 +04:00
|
|
|
set(KWIML cmIML)
|
|
|
|
set(KWIML_HEADER_ROOT ${CMake_BINARY_DIR}/Utilities)
|
|
|
|
add_subdirectory(Utilities/KWIML)
|
2011-06-27 22:15:37 +04:00
|
|
|
|
2007-05-11 17:02:17 +04:00
|
|
|
#---------------------------------------------------------------------
|
|
|
|
# Create the kwsys library for CMake.
|
2012-08-13 21:47:32 +04:00
|
|
|
set(KWSYS_NAMESPACE cmsys)
|
|
|
|
set(KWSYS_USE_SystemTools 1)
|
|
|
|
set(KWSYS_USE_Directory 1)
|
|
|
|
set(KWSYS_USE_RegularExpression 1)
|
|
|
|
set(KWSYS_USE_Base64 1)
|
|
|
|
set(KWSYS_USE_MD5 1)
|
|
|
|
set(KWSYS_USE_Process 1)
|
|
|
|
set(KWSYS_USE_CommandLineArguments 1)
|
|
|
|
set(KWSYS_HEADER_ROOT ${CMake_BINARY_DIR}/Source)
|
|
|
|
set(KWSYS_INSTALL_DOC_DIR "${CMake_DOC_DEST}")
|
|
|
|
add_subdirectory(Source/kwsys)
|
|
|
|
set(kwsys_folder "Utilities/KWSys")
|
2010-09-03 21:53:22 +04:00
|
|
|
CMAKE_SET_TARGET_FOLDER(${KWSYS_NAMESPACE} "${kwsys_folder}")
|
|
|
|
CMAKE_SET_TARGET_FOLDER(${KWSYS_NAMESPACE}_c "${kwsys_folder}")
|
2011-09-14 18:38:04 +04:00
|
|
|
if(BUILD_TESTING)
|
|
|
|
CMAKE_SET_TARGET_FOLDER(${KWSYS_NAMESPACE}TestDynload "${kwsys_folder}")
|
|
|
|
CMAKE_SET_TARGET_FOLDER(${KWSYS_NAMESPACE}TestProcess "${kwsys_folder}")
|
|
|
|
CMAKE_SET_TARGET_FOLDER(${KWSYS_NAMESPACE}TestsC "${kwsys_folder}")
|
|
|
|
CMAKE_SET_TARGET_FOLDER(${KWSYS_NAMESPACE}TestsCxx "${kwsys_folder}")
|
|
|
|
CMAKE_SET_TARGET_FOLDER(${KWSYS_NAMESPACE}TestSharedForward "${kwsys_folder}")
|
|
|
|
endif()
|
2010-09-03 21:53:22 +04:00
|
|
|
|
2007-05-11 17:02:17 +04:00
|
|
|
#---------------------------------------------------------------------
|
|
|
|
# Setup third-party libraries.
|
|
|
|
# Everything in the tree should be able to include files from the
|
|
|
|
# Utilities directory.
|
2012-08-13 21:47:32 +04:00
|
|
|
include_directories(
|
2007-05-11 17:02:17 +04:00
|
|
|
${CMake_BINARY_DIR}/Utilities
|
2008-09-29 23:47:46 +04:00
|
|
|
${CMake_SOURCE_DIR}/Utilities
|
2007-05-11 17:02:17 +04:00
|
|
|
)
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2007-05-11 17:02:17 +04:00
|
|
|
# check for the use of system libraries versus builtin ones
|
2007-05-11 20:17:27 +04:00
|
|
|
# (a macro defined in this file)
|
2007-05-11 17:02:17 +04:00
|
|
|
CMAKE_HANDLE_SYSTEM_LIBRARIES()
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2007-05-11 17:02:17 +04:00
|
|
|
#---------------------------------------------------------------------
|
|
|
|
# Build zlib library for Curl, CMake, and CTest.
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_ZLIB_HEADER "cm_zlib.h")
|
|
|
|
if(CMAKE_USE_SYSTEM_ZLIB)
|
|
|
|
find_package(ZLIB)
|
|
|
|
if(NOT ZLIB_FOUND)
|
|
|
|
message(FATAL_ERROR
|
2007-05-11 17:02:17 +04:00
|
|
|
"CMAKE_USE_SYSTEM_ZLIB is ON but a zlib is not found!")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_ZLIB_INCLUDES ${ZLIB_INCLUDE_DIR})
|
|
|
|
set(CMAKE_ZLIB_LIBRARIES ${ZLIB_LIBRARIES})
|
2012-08-13 21:50:14 +04:00
|
|
|
else()
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_ZLIB_INCLUDES ${CMake_SOURCE_DIR}/Utilities)
|
|
|
|
set(CMAKE_ZLIB_LIBRARIES cmzlib)
|
|
|
|
add_subdirectory(Utilities/cmzlib)
|
2010-09-03 21:53:22 +04:00
|
|
|
CMAKE_SET_TARGET_FOLDER(cmzlib "Utilities/3rdParty")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2007-05-11 17:02:17 +04:00
|
|
|
#---------------------------------------------------------------------
|
|
|
|
# Build Curl library for CTest.
|
2012-08-13 21:47:32 +04:00
|
|
|
if(CMAKE_USE_SYSTEM_CURL)
|
|
|
|
find_package(CURL)
|
|
|
|
if(NOT CURL_FOUND)
|
|
|
|
message(FATAL_ERROR
|
2007-05-11 17:02:17 +04:00
|
|
|
"CMAKE_USE_SYSTEM_CURL is ON but a curl is not found!")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_CURL_INCLUDES ${CURL_INCLUDE_DIRS})
|
|
|
|
set(CMAKE_CURL_LIBRARIES ${CURL_LIBRARIES})
|
2012-08-13 21:50:14 +04:00
|
|
|
else()
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CURL_SPECIAL_ZLIB_H ${CMAKE_ZLIB_HEADER})
|
|
|
|
set(CURL_SPECIAL_LIBZ_INCLUDES ${CMAKE_ZLIB_INCLUDES})
|
|
|
|
set(CURL_SPECIAL_LIBZ ${CMAKE_ZLIB_LIBRARIES})
|
|
|
|
option(CMAKE_BUILD_CURL_SHARED "Should curl be built shared" FALSE)
|
|
|
|
if(NOT CMAKE_BUILD_CURL_SHARED)
|
|
|
|
add_definitions(-DCURL_STATICLIB)
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_CURL_INCLUDES)
|
|
|
|
set(CMAKE_CURL_LIBRARIES cmcurl)
|
|
|
|
if(CMAKE_TESTS_CDASH_SERVER)
|
|
|
|
set(CMAKE_CURL_TEST_URL "${CMAKE_TESTS_CDASH_SERVER}/user.php")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2012-08-13 21:47:32 +04:00
|
|
|
add_subdirectory(Utilities/cmcurl)
|
2010-09-03 21:53:22 +04:00
|
|
|
CMAKE_SET_TARGET_FOLDER(cmcurl "Utilities/3rdParty")
|
|
|
|
CMAKE_SET_TARGET_FOLDER(LIBCURL "Utilities/3rdParty")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2007-05-11 17:02:17 +04:00
|
|
|
|
|
|
|
#---------------------------------------------------------------------
|
|
|
|
# Build Compress library for CTest.
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_COMPRESS_INCLUDES
|
2007-05-11 17:02:17 +04:00
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/Utilities/cmcompress")
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_COMPRESS_LIBRARIES "cmcompress")
|
|
|
|
add_subdirectory(Utilities/cmcompress)
|
2010-09-03 21:53:22 +04:00
|
|
|
CMAKE_SET_TARGET_FOLDER(cmcompress "Utilities/3rdParty")
|
2012-08-13 21:47:32 +04:00
|
|
|
if(CMAKE_USE_SYSTEM_BZIP2)
|
|
|
|
find_package(BZip2)
|
|
|
|
else()
|
|
|
|
set(BZIP2_INCLUDE_DIR
|
2009-10-30 20:10:56 +03:00
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/Utilities/cmbzip2")
|
2012-08-13 21:47:32 +04:00
|
|
|
set(BZIP2_LIBRARIES cmbzip2)
|
|
|
|
add_subdirectory(Utilities/cmbzip2)
|
2010-09-03 21:53:22 +04:00
|
|
|
CMAKE_SET_TARGET_FOLDER(cmbzip2 "Utilities/3rdParty")
|
2012-08-13 21:47:32 +04:00
|
|
|
endif()
|
2010-07-29 18:12:09 +04:00
|
|
|
|
|
|
|
#---------------------------------------------------------------------
|
|
|
|
# Build or use system libarchive for CMake and CTest.
|
2012-08-13 21:47:32 +04:00
|
|
|
if(CMAKE_USE_SYSTEM_LIBARCHIVE)
|
|
|
|
if(EXISTS ${CMAKE_ROOT}/Modules/FindLibArchive.cmake) # added in 2.8.3
|
|
|
|
find_package(LibArchive)
|
|
|
|
else()
|
|
|
|
include(${CMake_SOURCE_DIR}/Modules/FindLibArchive.cmake)
|
|
|
|
endif()
|
|
|
|
if(NOT LibArchive_FOUND)
|
|
|
|
message(FATAL_ERROR "CMAKE_USE_SYSTEM_LIBARCHIVE is ON but LibArchive is not found!")
|
|
|
|
endif()
|
|
|
|
set(CMAKE_TAR_INCLUDES ${LibArchive_INCLUDE_DIRS})
|
|
|
|
set(CMAKE_TAR_LIBRARIES ${LibArchive_LIBRARIES})
|
2012-08-13 21:50:14 +04:00
|
|
|
else()
|
2012-08-13 21:47:32 +04:00
|
|
|
set(ZLIB_INCLUDE_DIR ${CMAKE_ZLIB_INCLUDES})
|
|
|
|
set(ZLIB_LIBRARY ${CMAKE_ZLIB_LIBRARIES})
|
|
|
|
add_definitions(-DLIBARCHIVE_STATIC)
|
|
|
|
set(ENABLE_NETTLE OFF CACHE INTERNAL "Enable use of Nettle")
|
|
|
|
set(ENABLE_OPENSSL ${CMAKE_USE_OPENSSL} CACHE INTERNAL "Enable use of OpenSSL")
|
|
|
|
set(ENABLE_XATTR OFF CACHE INTERNAL "Enable extended attribute support")
|
|
|
|
set(ENABLE_ACL OFF CACHE INTERNAL "Enable ACL support")
|
|
|
|
set(ENABLE_ICONV OFF CACHE INTERNAL "Enable iconv support")
|
|
|
|
add_subdirectory(Utilities/cmlibarchive)
|
2010-09-03 21:53:22 +04:00
|
|
|
CMAKE_SET_TARGET_FOLDER(cmlibarchive "Utilities/3rdParty")
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_TAR_LIBRARIES cmlibarchive ${BZIP2_LIBRARIES})
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2009-10-30 20:10:56 +03:00
|
|
|
|
2007-05-11 17:02:17 +04:00
|
|
|
#---------------------------------------------------------------------
|
|
|
|
# Build expat library for CMake and CTest.
|
2012-08-13 21:47:32 +04:00
|
|
|
if(CMAKE_USE_SYSTEM_EXPAT)
|
|
|
|
find_package(EXPAT)
|
|
|
|
if(NOT EXPAT_FOUND)
|
|
|
|
message(FATAL_ERROR
|
2007-05-11 17:02:17 +04:00
|
|
|
"CMAKE_USE_SYSTEM_EXPAT is ON but a expat is not found!")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_EXPAT_INCLUDES ${EXPAT_INCLUDE_DIRS})
|
|
|
|
set(CMAKE_EXPAT_LIBRARIES ${EXPAT_LIBRARIES})
|
2012-08-13 21:50:14 +04:00
|
|
|
else()
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_EXPAT_INCLUDES)
|
|
|
|
set(CMAKE_EXPAT_LIBRARIES cmexpat)
|
|
|
|
add_subdirectory(Utilities/cmexpat)
|
2010-09-03 21:53:22 +04:00
|
|
|
CMAKE_SET_TARGET_FOLDER(cmexpat "Utilities/3rdParty")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2007-05-11 17:02:17 +04:00
|
|
|
#---------------------------------------------------------------------
|
|
|
|
# Build XMLRPC library for CMake and CTest.
|
2012-08-13 21:47:32 +04:00
|
|
|
if(CTEST_USE_XMLRPC)
|
|
|
|
find_package(XMLRPC QUIET REQUIRED libwww-client)
|
|
|
|
if(NOT XMLRPC_FOUND)
|
|
|
|
message(FATAL_ERROR
|
2009-06-11 19:24:56 +04:00
|
|
|
"CTEST_USE_XMLRPC is ON but xmlrpc is not found!")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_XMLRPC_INCLUDES ${XMLRPC_INCLUDE_DIRS})
|
|
|
|
set(CMAKE_XMLRPC_LIBRARIES ${XMLRPC_LIBRARIES})
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2007-05-11 17:02:17 +04:00
|
|
|
#---------------------------------------------------------------------
|
|
|
|
# Use curses?
|
2012-08-13 21:47:32 +04:00
|
|
|
if (UNIX)
|
2007-11-24 04:45:49 +03:00
|
|
|
# there is a bug in the Syllable libraries which makes linking ccmake fail, Alex
|
2012-08-13 21:47:32 +04:00
|
|
|
if(NOT "${CMAKE_SYSTEM_NAME}" MATCHES syllable)
|
|
|
|
set(CURSES_NEED_NCURSES TRUE)
|
|
|
|
find_package(Curses QUIET)
|
|
|
|
if (CURSES_LIBRARY)
|
|
|
|
option(BUILD_CursesDialog "Build the CMake Curses Dialog ccmake" ON)
|
2012-08-13 21:50:14 +04:00
|
|
|
else ()
|
2012-08-13 21:47:32 +04:00
|
|
|
message("Curses libraries were not found. Curses GUI for CMake will not be built.")
|
|
|
|
set(BUILD_CursesDialog 0)
|
2012-08-13 21:50:14 +04:00
|
|
|
endif ()
|
|
|
|
else()
|
2012-08-13 21:47:32 +04:00
|
|
|
set(BUILD_CursesDialog 0)
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
|
|
|
else ()
|
2012-08-13 21:47:32 +04:00
|
|
|
set(BUILD_CursesDialog 0)
|
2012-08-13 21:50:14 +04:00
|
|
|
endif ()
|
2012-08-13 21:47:32 +04:00
|
|
|
if(BUILD_CursesDialog)
|
|
|
|
add_subdirectory(Source/CursesDialog/form)
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
|
|
|
endmacro ()
|
2007-05-11 17:02:17 +04:00
|
|
|
|
2010-07-06 17:54:36 +04:00
|
|
|
#-----------------------------------------------------------------------
|
2012-08-13 21:47:32 +04:00
|
|
|
if(CMAKE_CXX_PLATFORM_ID MATCHES "OpenBSD")
|
|
|
|
execute_process(COMMAND ${CMAKE_CXX_COMPILER}
|
2010-07-06 17:54:36 +04:00
|
|
|
${CMAKE_CXX_COMPILER_ARG1} -dumpversion
|
|
|
|
OUTPUT_VARIABLE _GXX_VERSION
|
|
|
|
)
|
2012-08-13 21:47:32 +04:00
|
|
|
string(REGEX REPLACE "([0-9])\\.([0-9])(\\.[0-9])?" "\\1\\2"
|
2010-07-06 17:54:36 +04:00
|
|
|
_GXX_VERSION_SHORT ${_GXX_VERSION})
|
2012-08-13 21:47:32 +04:00
|
|
|
if(_GXX_VERSION_SHORT EQUAL 33)
|
|
|
|
message(FATAL_ERROR
|
2010-07-06 17:54:36 +04:00
|
|
|
"GXX 3.3 on OpenBSD is known to cause CPack to Crash.\n"
|
|
|
|
"Please use GXX 4.2 or greater to build CMake on OpenBSD\n"
|
|
|
|
"${CMAKE_CXX_COMPILER} version is: ${_GXX_VERSION}")
|
2012-08-13 21:47:32 +04:00
|
|
|
endif()
|
|
|
|
endif()
|
2007-05-11 17:02:17 +04:00
|
|
|
|
|
|
|
#-----------------------------------------------------------------------
|
|
|
|
# The main section of the CMakeLists file
|
|
|
|
#
|
|
|
|
#-----------------------------------------------------------------------
|
2012-08-13 21:47:32 +04:00
|
|
|
include(Source/CMakeVersion.cmake)
|
2012-04-20 19:20:48 +04:00
|
|
|
# Releases define a small tweak level.
|
2012-08-13 21:47:32 +04:00
|
|
|
if("${CMake_VERSION_TWEAK}" VERSION_LESS 20000000)
|
|
|
|
set(CMake_VERSION_IS_RELEASE 1)
|
|
|
|
set(CMake_VERSION_SOURCE "")
|
|
|
|
else()
|
|
|
|
set(CMake_VERSION_IS_RELEASE 0)
|
|
|
|
include(${CMake_SOURCE_DIR}/Source/CMakeVersionSource.cmake)
|
|
|
|
endif()
|
2007-09-07 22:20:14 +04:00
|
|
|
|
2010-04-23 17:44:23 +04:00
|
|
|
# Compute the full version string.
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMake_VERSION ${CMake_VERSION_MAJOR}.${CMake_VERSION_MINOR}.${CMake_VERSION_PATCH})
|
|
|
|
if(${CMake_VERSION_TWEAK} GREATER 0)
|
|
|
|
set(CMake_VERSION ${CMake_VERSION}.${CMake_VERSION_TWEAK})
|
|
|
|
endif()
|
|
|
|
if(CMake_VERSION_RC)
|
|
|
|
set(CMake_VERSION ${CMake_VERSION}-rc${CMake_VERSION_RC})
|
|
|
|
endif()
|
|
|
|
if(CMake_VERSION_SOURCE)
|
|
|
|
set(CMake_VERSION ${CMake_VERSION}-${CMake_VERSION_SOURCE})
|
|
|
|
endif()
|
2003-02-14 05:57:05 +03:00
|
|
|
|
2007-05-11 17:02:17 +04:00
|
|
|
# Include the standard Dart testing module
|
2012-08-13 21:47:32 +04:00
|
|
|
enable_testing()
|
|
|
|
include (${CMAKE_ROOT}/Modules/Dart.cmake)
|
2007-05-11 17:02:17 +04:00
|
|
|
|
2009-12-10 18:33:42 +03:00
|
|
|
# Set up test-time configuration.
|
2012-08-13 21:47:32 +04:00
|
|
|
set_directory_properties(PROPERTIES
|
2009-12-10 18:33:42 +03:00
|
|
|
TEST_INCLUDE_FILE "${CMake_BINARY_DIR}/Tests/EnforceConfig.cmake")
|
|
|
|
|
2007-05-11 17:02:17 +04:00
|
|
|
# where to write the resulting executables and libraries
|
2012-08-13 21:47:32 +04:00
|
|
|
set(BUILD_SHARED_LIBS OFF)
|
|
|
|
set(EXECUTABLE_OUTPUT_PATH "" CACHE INTERNAL "No configurable exe dir.")
|
|
|
|
set(LIBRARY_OUTPUT_PATH "" CACHE INTERNAL
|
2007-05-11 17:02:17 +04:00
|
|
|
"Where to put the libraries for CMake")
|
2005-03-01 22:21:45 +03:00
|
|
|
|
2007-08-28 19:02:24 +04:00
|
|
|
# The CMake executables usually do not need any rpath to run in the build or
|
2006-03-02 03:00:08 +03:00
|
|
|
# install tree.
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_SKIP_RPATH ON CACHE INTERNAL "CMake does not need RPATHs.")
|
2006-03-02 03:00:08 +03:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_DATA_DIR "/share/cmake-${CMake_VERSION_MAJOR}.${CMake_VERSION_MINOR}" CACHE STRING
|
2003-07-22 00:38:53 +04:00
|
|
|
"Install location for data (relative to prefix).")
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_DOC_DIR "/doc/cmake-${CMake_VERSION_MAJOR}.${CMake_VERSION_MINOR}" CACHE STRING
|
2003-07-22 00:38:53 +04:00
|
|
|
"Install location for documentation (relative to prefix).")
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_MAN_DIR "/man" CACHE STRING
|
2003-07-22 00:38:53 +04:00
|
|
|
"Install location for man pages (relative to prefix).")
|
2012-08-13 21:47:32 +04:00
|
|
|
mark_as_advanced(CMAKE_DATA_DIR CMAKE_DOC_DIR CMAKE_MAN_DIR)
|
|
|
|
if(CYGWIN AND EXISTS "${CMAKE_ROOT}/Modules/CPack.cmake")
|
2010-06-09 19:34:38 +04:00
|
|
|
# Force doc, data and man dirs to conform to cygwin layout.
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_DOC_DIR "/share/doc/cmake-${CMake_VERSION}")
|
|
|
|
set(CMAKE_DATA_DIR "/share/cmake-${CMake_VERSION}")
|
|
|
|
set(CMAKE_MAN_DIR "/share/man")
|
2010-06-09 19:34:38 +04:00
|
|
|
# let the user know we just forced these values
|
2012-08-13 21:47:32 +04:00
|
|
|
message(STATUS "Setup for Cygwin packaging")
|
|
|
|
message(STATUS "Override cache CMAKE_DOC_DIR = ${CMAKE_DOC_DIR}")
|
|
|
|
message(STATUS "Override cache CMAKE_DATA_DIR = ${CMAKE_DATA_DIR}")
|
|
|
|
message(STATUS "Override cache CMAKE_MAN_DIR = ${CMAKE_MAN_DIR}")
|
|
|
|
endif()
|
|
|
|
string(REGEX REPLACE "^/" "" CMake_DATA_DEST "${CMAKE_DATA_DIR}")
|
|
|
|
string(REGEX REPLACE "^/" "" CMake_DOC_DEST "${CMAKE_DOC_DIR}")
|
|
|
|
|
|
|
|
if(BUILD_TESTING)
|
|
|
|
include(${CMake_SOURCE_DIR}/Tests/CMakeInstall.cmake)
|
|
|
|
endif()
|
2009-12-10 18:34:36 +03:00
|
|
|
|
2007-05-11 17:02:17 +04:00
|
|
|
# include special compile flags for some compilers
|
2012-08-13 21:47:32 +04:00
|
|
|
include(CompileFlags.cmake)
|
2003-06-23 16:58:58 +04:00
|
|
|
|
2007-05-11 17:02:17 +04:00
|
|
|
# no clue why we are testing for this here
|
2012-08-13 21:47:32 +04:00
|
|
|
include(CheckSymbolExists)
|
2006-03-18 00:14:04 +03:00
|
|
|
CHECK_SYMBOL_EXISTS(unsetenv "stdlib.h" HAVE_UNSETENV)
|
|
|
|
CHECK_SYMBOL_EXISTS(environ "stdlib.h" HAVE_ENVIRON_NOT_REQUIRE_PROTOTYPE)
|
|
|
|
|
2010-03-08 20:14:47 +03:00
|
|
|
# CMAKE_TESTS_CDASH_SERVER: CDash server used by CMake/Tests.
|
|
|
|
#
|
|
|
|
# If not defined or "", this variable defaults to the server at
|
|
|
|
# http://www.cdash.org/CDash.
|
|
|
|
#
|
|
|
|
# If set explicitly to "NOTFOUND", curl tests and ctest tests that use
|
|
|
|
# the network are skipped.
|
|
|
|
#
|
|
|
|
# If set to something starting with "http://localhost/", the CDash is
|
|
|
|
# expected to be an instance of CDash used for CDash testing, pointing
|
|
|
|
# to a cdash4simpletest database. In these cases, the CDash dashboards
|
|
|
|
# should be run first.
|
|
|
|
#
|
2012-08-13 21:47:32 +04:00
|
|
|
if("x${CMAKE_TESTS_CDASH_SERVER}" STREQUAL "x")
|
|
|
|
set(CMAKE_TESTS_CDASH_SERVER "http://www.cdash.org/CDash")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2010-03-08 20:14:47 +03:00
|
|
|
|
2012-08-13 21:42:58 +04:00
|
|
|
# build the utilities (a macro defined in this file)
|
2007-05-11 17:02:17 +04:00
|
|
|
CMAKE_BUILD_UTILITIES()
|
2001-06-12 21:30:13 +04:00
|
|
|
|
2007-08-28 19:02:24 +04:00
|
|
|
# On NetBSD ncurses is required, since curses doesn't have the wsyncup()
|
|
|
|
# function. ncurses is installed via pkgsrc, so the library is in /usr/pkg/lib,
|
2012-08-13 21:42:58 +04:00
|
|
|
# which isn't in the default linker search path. So without RPATH ccmake
|
2007-08-28 19:02:24 +04:00
|
|
|
# doesn't run and the build doesn't succeed since ccmake is executed for
|
|
|
|
# generating the documentation.
|
2012-08-13 21:47:32 +04:00
|
|
|
if(BUILD_CursesDialog)
|
|
|
|
get_filename_component(_CURSES_DIR "${CURSES_LIBRARY}" PATH)
|
|
|
|
set(CURSES_NEED_RPATH FALSE)
|
|
|
|
if(NOT "${_CURSES_DIR}" STREQUAL "/lib" AND NOT "${_CURSES_DIR}" STREQUAL "/usr/lib" AND NOT "${_CURSES_DIR}" STREQUAL "/lib64" AND NOT "${_CURSES_DIR}" STREQUAL "/usr/lib64")
|
|
|
|
set(CURSES_NEED_RPATH TRUE)
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
|
|
|
endif()
|
2012-08-13 21:47:32 +04:00
|
|
|
|
|
|
|
if(BUILD_QtDialog)
|
|
|
|
if(APPLE)
|
|
|
|
set(CMAKE_BUNDLE_NAME
|
2008-02-16 21:05:03 +03:00
|
|
|
"CMake ${CMake_VERSION_MAJOR}.${CMake_VERSION_MINOR}-${CMake_VERSION_PATCH}")
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_BUNDLE_LOCATION "${CMAKE_INSTALL_PREFIX}")
|
2008-02-18 23:50:37 +03:00
|
|
|
# make sure CMAKE_INSTALL_PREFIX ends in /
|
2012-08-13 21:47:32 +04:00
|
|
|
string(LENGTH "${CMAKE_INSTALL_PREFIX}" LEN)
|
|
|
|
math(EXPR LEN "${LEN} -1" )
|
|
|
|
string(SUBSTRING "${CMAKE_INSTALL_PREFIX}" ${LEN} 1 ENDCH)
|
|
|
|
if(NOT "${ENDCH}" STREQUAL "/")
|
|
|
|
set(CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}/")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_INSTALL_PREFIX
|
2008-04-05 00:02:50 +04:00
|
|
|
"${CMAKE_INSTALL_PREFIX}${CMAKE_BUNDLE_NAME}.app/Contents")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
set(QT_NEED_RPATH FALSE)
|
|
|
|
if(NOT "${QT_LIBRARY_DIR}" STREQUAL "/lib" AND NOT "${QT_LIBRARY_DIR}" STREQUAL "/usr/lib" AND NOT "${QT_LIBRARY_DIR}" STREQUAL "/lib64" AND NOT "${QT_LIBRARY_DIR}" STREQUAL "/usr/lib64")
|
|
|
|
set(QT_NEED_RPATH TRUE)
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
|
|
|
endif()
|
2007-11-06 02:06:02 +03:00
|
|
|
|
|
|
|
|
2009-06-11 19:24:56 +04:00
|
|
|
# The same might be true on other systems for other libraries.
|
2012-08-13 21:42:58 +04:00
|
|
|
# Then only enable RPATH if we have are building at least with cmake 2.4,
|
2007-08-28 19:02:24 +04:00
|
|
|
# since this one has much better RPATH features than cmake 2.2.
|
|
|
|
# The executables are then built with the RPATH for the libraries outside
|
|
|
|
# the build tree, which is both the build and the install RPATH.
|
2012-08-13 21:47:32 +04:00
|
|
|
if (UNIX)
|
|
|
|
if( CMAKE_USE_SYSTEM_CURL OR CMAKE_USE_SYSTEM_ZLIB
|
2009-06-11 19:24:56 +04:00
|
|
|
OR CMAKE_USE_SYSTEM_EXPAT OR CTEST_USE_XMLRPC OR CURSES_NEED_RPATH OR QT_NEED_RPATH)
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_SKIP_RPATH OFF CACHE INTERNAL "CMake built with RPATH.")
|
|
|
|
set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
|
|
|
|
set(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE)
|
2012-08-15 19:59:36 +04:00
|
|
|
endif()
|
2012-08-13 21:50:14 +04:00
|
|
|
endif ()
|
2007-08-28 19:02:24 +04:00
|
|
|
|
|
|
|
|
2007-05-11 17:02:17 +04:00
|
|
|
# add the uninstall support
|
2012-08-13 21:47:32 +04:00
|
|
|
configure_file(
|
2005-01-18 16:58:27 +03:00
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/cmake_uninstall.cmake.in"
|
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake"
|
2007-05-11 17:02:17 +04:00
|
|
|
@ONLY)
|
2012-08-13 21:47:32 +04:00
|
|
|
add_custom_target(uninstall
|
2005-01-18 16:58:27 +03:00
|
|
|
"${CMAKE_COMMAND}" -P "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake")
|
2005-06-28 18:56:29 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
include (CMakeCPack.cmake)
|
2006-01-05 17:18:13 +03:00
|
|
|
|
2007-05-11 17:02:17 +04:00
|
|
|
# setup some Testing support (a macro defined in this file)
|
|
|
|
CMAKE_SETUP_TESTING()
|
2012-08-13 21:47:32 +04:00
|
|
|
configure_file(
|
2007-06-29 19:18:08 +04:00
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/DartLocal.conf.in"
|
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/DartLocal.conf"
|
|
|
|
COPYONLY)
|
2007-02-28 20:25:19 +03:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
option(CMAKE_STRICT
|
2007-11-06 22:14:18 +03:00
|
|
|
"Perform strict testing to record property and variable access. Can be used to report any undefined properties or variables" OFF)
|
2012-08-13 21:47:32 +04:00
|
|
|
mark_as_advanced(CMAKE_STRICT)
|
2007-11-06 22:14:18 +03:00
|
|
|
|
2012-09-23 17:02:23 +04:00
|
|
|
if(NOT CMake_VERSION_IS_RELEASE)
|
|
|
|
if("${CMAKE_C_COMPILER_ID}" STREQUAL "GNU" AND
|
|
|
|
NOT "${CMAKE_C_COMPILER_VERSION}" VERSION_LESS 4.2)
|
|
|
|
set(C_FLAGS_LIST -Wcast-align -Werror-implicit-function-declaration -Wchar-subscripts
|
|
|
|
-Wall -W -Wpointer-arith -Wwrite-strings -Wformat-security
|
2013-01-07 19:07:49 +04:00
|
|
|
-Wmissing-format-attribute -fno-common -Wundef
|
2012-09-23 17:02:23 +04:00
|
|
|
)
|
|
|
|
set(CXX_FLAGS_LIST -Wnon-virtual-dtor -Wcast-align -Wchar-subscripts -Wall -W
|
2013-01-07 19:07:49 +04:00
|
|
|
-Wshadow -Wpointer-arith -Wformat-security -Wundef
|
2012-09-23 17:02:23 +04:00
|
|
|
)
|
|
|
|
|
|
|
|
foreach(FLAG_LANG C CXX)
|
|
|
|
foreach(FLAG ${${FLAG_LANG}_FLAGS_LIST})
|
|
|
|
if(NOT " ${CMAKE_${FLAG_LANG}_FLAGS} " MATCHES " ${FLAG} ")
|
|
|
|
set(CMAKE_${FLAG_LANG}_FLAGS "${CMAKE_${FLAG_LANG}_FLAGS} ${FLAG}")
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
unset(C_FLAGS_LIST)
|
|
|
|
unset(CXX_FLAGS_LIST)
|
|
|
|
endif()
|
|
|
|
endif()
|
2007-11-06 22:14:18 +03:00
|
|
|
|
2007-05-11 17:02:17 +04:00
|
|
|
# build the remaining subdirectories
|
2012-08-13 21:47:32 +04:00
|
|
|
add_subdirectory(Source)
|
|
|
|
add_subdirectory(Utilities)
|
|
|
|
add_subdirectory(Tests)
|
2007-02-28 20:25:19 +03:00
|
|
|
|
2011-09-14 18:38:04 +04:00
|
|
|
if(BUILD_TESTING)
|
|
|
|
CMAKE_SET_TARGET_FOLDER(CMakeLibTests "Tests")
|
|
|
|
endif()
|
2010-09-03 21:53:22 +04:00
|
|
|
CMAKE_SET_TARGET_FOLDER(cmw9xcom "Utilities/Win9xCompat")
|
|
|
|
CMAKE_SET_TARGET_FOLDER(documentation "Documentation")
|
|
|
|
|
2007-05-11 17:02:17 +04:00
|
|
|
# add a test
|
2012-08-13 21:47:32 +04:00
|
|
|
add_test(SystemInformationNew "${CMAKE_CMAKE_COMMAND}"
|
2007-05-11 17:02:17 +04:00
|
|
|
--system-information -G "${CMAKE_TEST_GENERATOR}" )
|
2007-02-27 21:04:29 +03:00
|
|
|
|
2009-09-28 19:35:52 +04:00
|
|
|
# Install license file as it requires.
|
2012-08-13 21:47:32 +04:00
|
|
|
install(FILES Copyright.txt DESTINATION ${CMake_DOC_DEST})
|
2009-09-28 19:35:52 +04:00
|
|
|
|
2009-07-24 21:17:41 +04:00
|
|
|
# Install script directories.
|
2012-08-13 21:47:32 +04:00
|
|
|
install(
|
2009-07-24 21:17:41 +04:00
|
|
|
DIRECTORY Modules Templates
|
|
|
|
DESTINATION "${CMake_DATA_DEST}"
|
|
|
|
FILE_PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ
|
|
|
|
DIRECTORY_PERMISSIONS OWNER_READ OWNER_EXECUTE OWNER_WRITE
|
|
|
|
GROUP_READ GROUP_EXECUTE
|
|
|
|
WORLD_READ WORLD_EXECUTE
|
2009-10-05 18:28:37 +04:00
|
|
|
PATTERN "*.sh*" PERMISSIONS OWNER_READ OWNER_EXECUTE OWNER_WRITE
|
|
|
|
GROUP_READ GROUP_EXECUTE
|
|
|
|
WORLD_READ WORLD_EXECUTE
|
2009-07-24 21:17:41 +04:00
|
|
|
)
|
|
|
|
|
2012-04-22 21:08:29 +04:00
|
|
|
# process docs related install
|
2012-08-13 21:47:32 +04:00
|
|
|
add_subdirectory(Docs)
|
2012-04-22 21:08:29 +04:00
|
|
|
|
2007-05-11 17:02:17 +04:00
|
|
|
#-----------------------------------------------------------------------
|
|
|
|
# End of the main section of the CMakeLists file
|
|
|
|
#-----------------------------------------------------------------------
|
2009-12-10 17:10:12 +03:00
|
|
|
|
|
|
|
# As a special case when building CMake itself, CMake 2.8.0 and below
|
|
|
|
# look up EXECUTABLE_OUTPUT_PATH in the top-level CMakeLists.txt file
|
|
|
|
# to compute the location of the "cmake" executable. We set it here
|
|
|
|
# so that those CMake versions can find it. We wait until after all
|
|
|
|
# the add_subdirectory() calls to avoid affecting the subdirectories.
|
2012-08-13 21:47:32 +04:00
|
|
|
set(EXECUTABLE_OUTPUT_PATH ${CMake_BIN_DIR})
|