2013-10-15 19:17:36 +04:00
|
|
|
#.rst:
|
|
|
|
# CheckCXXSourceRuns
|
|
|
|
# ------------------
|
|
|
|
#
|
|
|
|
# Check if the given C++ source code compiles and runs.
|
|
|
|
#
|
2009-09-17 23:28:51 +04:00
|
|
|
# CHECK_CXX_SOURCE_RUNS(<code> <var>)
|
2013-10-15 19:17:36 +04:00
|
|
|
#
|
|
|
|
# ::
|
|
|
|
#
|
|
|
|
# <code> - source code to try to compile
|
|
|
|
# <var> - variable to store the result
|
|
|
|
# (1 for success, empty for failure)
|
2014-09-10 10:35:49 +04:00
|
|
|
# Will be created as an internal cache variable.
|
2013-10-15 19:17:36 +04:00
|
|
|
#
|
|
|
|
# The following variables may be set before calling this macro to modify
|
|
|
|
# the way the check is run:
|
|
|
|
#
|
|
|
|
# ::
|
|
|
|
#
|
|
|
|
# CMAKE_REQUIRED_FLAGS = string of compile command line flags
|
|
|
|
# CMAKE_REQUIRED_DEFINITIONS = list of macros to define (-DFOO=bar)
|
|
|
|
# CMAKE_REQUIRED_INCLUDES = list of include directories
|
|
|
|
# CMAKE_REQUIRED_LIBRARIES = list of libraries to link
|
2014-03-30 06:12:27 +04:00
|
|
|
# CMAKE_REQUIRED_QUIET = execute quietly without messages
|
2006-08-03 23:20:48 +04:00
|
|
|
|
2009-09-28 19:46:51 +04:00
|
|
|
#=============================================================================
|
|
|
|
# Copyright 2006-2009 Kitware, Inc.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#=============================================================================
|
2010-08-07 04:48:47 +04:00
|
|
|
# (To distribute this file outside of CMake, substitute the full
|
2009-09-28 19:46:51 +04:00
|
|
|
# License text for the above reference.)
|
|
|
|
|
2012-02-17 02:35:43 +04:00
|
|
|
|
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
macro(CHECK_CXX_SOURCE_RUNS SOURCE VAR)
|
2014-07-31 17:48:41 +04:00
|
|
|
if(NOT DEFINED "${VAR}")
|
2012-08-13 21:47:32 +04:00
|
|
|
set(MACRO_CHECK_FUNCTION_DEFINITIONS
|
2006-08-03 23:20:48 +04:00
|
|
|
"-D${VAR} ${CMAKE_REQUIRED_FLAGS}")
|
2012-08-13 21:47:32 +04:00
|
|
|
if(CMAKE_REQUIRED_LIBRARIES)
|
|
|
|
set(CHECK_CXX_SOURCE_COMPILES_ADD_LIBRARIES
|
2013-02-09 13:34:37 +04:00
|
|
|
LINK_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES})
|
2012-08-13 21:50:14 +04:00
|
|
|
else()
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CHECK_CXX_SOURCE_COMPILES_ADD_LIBRARIES)
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2012-08-13 21:47:32 +04:00
|
|
|
if(CMAKE_REQUIRED_INCLUDES)
|
|
|
|
set(CHECK_CXX_SOURCE_COMPILES_ADD_INCLUDES
|
2006-08-03 23:20:48 +04:00
|
|
|
"-DINCLUDE_DIRECTORIES:STRING=${CMAKE_REQUIRED_INCLUDES}")
|
2012-08-13 21:50:14 +04:00
|
|
|
else()
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CHECK_CXX_SOURCE_COMPILES_ADD_INCLUDES)
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2012-08-13 21:47:32 +04:00
|
|
|
file(WRITE "${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/src.cxx"
|
2006-08-03 23:20:48 +04:00
|
|
|
"${SOURCE}\n")
|
|
|
|
|
2014-03-30 06:12:27 +04:00
|
|
|
if(NOT CMAKE_REQUIRED_QUIET)
|
|
|
|
message(STATUS "Performing Test ${VAR}")
|
|
|
|
endif()
|
2012-08-13 21:47:32 +04:00
|
|
|
try_run(${VAR}_EXITCODE ${VAR}_COMPILED
|
2006-08-03 23:20:48 +04:00
|
|
|
${CMAKE_BINARY_DIR}
|
|
|
|
${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/src.cxx
|
|
|
|
COMPILE_DEFINITIONS ${CMAKE_REQUIRED_DEFINITIONS}
|
2013-02-09 13:34:37 +04:00
|
|
|
${CHECK_CXX_SOURCE_COMPILES_ADD_LIBRARIES}
|
2006-08-03 23:20:48 +04:00
|
|
|
CMAKE_FLAGS -DCOMPILE_DEFINITIONS:STRING=${MACRO_CHECK_FUNCTION_DEFINITIONS}
|
2007-08-28 18:52:07 +04:00
|
|
|
-DCMAKE_SKIP_RPATH:BOOL=${CMAKE_SKIP_RPATH}
|
2006-08-03 23:20:48 +04:00
|
|
|
"${CHECK_CXX_SOURCE_COMPILES_ADD_INCLUDES}"
|
2007-06-01 19:16:29 +04:00
|
|
|
COMPILE_OUTPUT_VARIABLE OUTPUT)
|
|
|
|
|
2006-08-03 23:20:48 +04:00
|
|
|
# if it did not compile make the return value fail code of 1
|
2012-08-13 21:47:32 +04:00
|
|
|
if(NOT ${VAR}_COMPILED)
|
|
|
|
set(${VAR}_EXITCODE 1)
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2006-08-03 23:20:48 +04:00
|
|
|
# if the return value was 0 then it worked
|
2012-08-13 21:47:32 +04:00
|
|
|
if("${${VAR}_EXITCODE}" EQUAL 0)
|
|
|
|
set(${VAR} 1 CACHE INTERNAL "Test ${VAR}")
|
2014-03-30 06:12:27 +04:00
|
|
|
if(NOT CMAKE_REQUIRED_QUIET)
|
|
|
|
message(STATUS "Performing Test ${VAR} - Success")
|
|
|
|
endif()
|
2012-08-13 21:47:32 +04:00
|
|
|
file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log
|
2015-10-06 04:42:19 +03:00
|
|
|
"Performing C++ SOURCE FILE Test ${VAR} succeeded with the following output:\n"
|
2012-01-19 00:55:52 +04:00
|
|
|
"${OUTPUT}\n"
|
2006-08-03 23:20:48 +04:00
|
|
|
"Return value: ${${VAR}}\n"
|
|
|
|
"Source file was:\n${SOURCE}\n")
|
2012-08-13 21:50:14 +04:00
|
|
|
else()
|
2012-08-13 21:47:32 +04:00
|
|
|
if(CMAKE_CROSSCOMPILING AND "${${VAR}_EXITCODE}" MATCHES "FAILED_TO_RUN")
|
|
|
|
set(${VAR} "${${VAR}_EXITCODE}")
|
2012-08-13 21:50:14 +04:00
|
|
|
else()
|
2012-08-13 21:47:32 +04:00
|
|
|
set(${VAR} "" CACHE INTERNAL "Test ${VAR}")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2007-07-31 21:30:10 +04:00
|
|
|
|
2014-03-30 06:12:27 +04:00
|
|
|
if(NOT CMAKE_REQUIRED_QUIET)
|
|
|
|
message(STATUS "Performing Test ${VAR} - Failed")
|
|
|
|
endif()
|
2012-08-13 21:47:32 +04:00
|
|
|
file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log
|
2006-08-03 23:20:48 +04:00
|
|
|
"Performing C++ SOURCE FILE Test ${VAR} failed with the following output:\n"
|
2012-01-19 00:55:52 +04:00
|
|
|
"${OUTPUT}\n"
|
2007-07-31 21:30:10 +04:00
|
|
|
"Return value: ${${VAR}_EXITCODE}\n"
|
2006-08-03 23:20:48 +04:00
|
|
|
"Source file was:\n${SOURCE}\n")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
endmacro()
|
2006-08-03 23:20:48 +04:00
|
|
|
|