2011-01-14 15:36:59 +03:00
|
|
|
# - Check if given C source compiles and links into an executable
|
2009-09-17 23:29:01 +04:00
|
|
|
# CHECK_C_SOURCE_COMPILES(<code> <var> [FAIL_REGEX <fail-regex>])
|
2011-01-14 15:36:59 +03:00
|
|
|
# <code> - source code to try to compile, must define 'main'
|
2009-09-17 23:28:51 +04:00
|
|
|
# <var> - variable to store whether the source code compiled
|
2009-09-17 23:29:01 +04:00
|
|
|
# <fail-regex> - fail if test output matches this regex
|
2006-02-10 03:23:18 +03: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
|
2005-08-01 07:02:22 +04:00
|
|
|
|
2009-09-28 19:46:51 +04:00
|
|
|
#=============================================================================
|
|
|
|
# Copyright 2005-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_C_SOURCE_COMPILES SOURCE VAR)
|
|
|
|
if("${VAR}" MATCHES "^${VAR}$")
|
|
|
|
set(_FAIL_REGEX)
|
|
|
|
set(_key)
|
|
|
|
foreach(arg ${ARGN})
|
|
|
|
if("${arg}" MATCHES "^(FAIL_REGEX)$")
|
|
|
|
set(_key "${arg}")
|
|
|
|
elseif(_key)
|
|
|
|
list(APPEND _${_key} "${arg}")
|
|
|
|
else()
|
|
|
|
message(FATAL_ERROR "Unknown argument:\n ${arg}\n")
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
set(MACRO_CHECK_FUNCTION_DEFINITIONS
|
2005-08-01 07:02:22 +04:00
|
|
|
"-D${VAR} ${CMAKE_REQUIRED_FLAGS}")
|
2012-08-13 21:47:32 +04:00
|
|
|
if(CMAKE_REQUIRED_LIBRARIES)
|
|
|
|
set(CHECK_C_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_C_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_C_SOURCE_COMPILES_ADD_INCLUDES
|
2005-08-01 07:02:22 +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_C_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.c"
|
2007-04-04 23:59:22 +04:00
|
|
|
"${SOURCE}\n")
|
2005-08-01 07:02:22 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
message(STATUS "Performing Test ${VAR}")
|
|
|
|
try_compile(${VAR}
|
2005-08-01 07:02:22 +04:00
|
|
|
${CMAKE_BINARY_DIR}
|
2006-06-14 20:28:32 +04:00
|
|
|
${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/src.c
|
2006-02-10 03:23:18 +03:00
|
|
|
COMPILE_DEFINITIONS ${CMAKE_REQUIRED_DEFINITIONS}
|
2013-02-09 13:34:37 +04:00
|
|
|
${CHECK_C_SOURCE_COMPILES_ADD_LIBRARIES}
|
2006-04-27 18:55:52 +04:00
|
|
|
CMAKE_FLAGS -DCOMPILE_DEFINITIONS:STRING=${MACRO_CHECK_FUNCTION_DEFINITIONS}
|
2005-08-01 07:02:22 +04:00
|
|
|
"${CHECK_C_SOURCE_COMPILES_ADD_INCLUDES}"
|
|
|
|
OUTPUT_VARIABLE OUTPUT)
|
2009-09-17 23:29:01 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
foreach(_regex ${_FAIL_REGEX})
|
|
|
|
if("${OUTPUT}" MATCHES "${_regex}")
|
|
|
|
set(${VAR} 0)
|
|
|
|
endif()
|
|
|
|
endforeach()
|
2009-09-17 23:29:01 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
if(${VAR})
|
|
|
|
set(${VAR} 1 CACHE INTERNAL "Test ${VAR}")
|
|
|
|
message(STATUS "Performing Test ${VAR} - Success")
|
|
|
|
file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log
|
2005-08-01 07:02:22 +04:00
|
|
|
"Performing C SOURCE FILE Test ${VAR} succeded with the following output:\n"
|
|
|
|
"${OUTPUT}\n"
|
2007-04-04 23:59:22 +04:00
|
|
|
"Source file was:\n${SOURCE}\n")
|
2012-08-13 21:50:14 +04:00
|
|
|
else()
|
2012-08-13 21:47:32 +04:00
|
|
|
message(STATUS "Performing Test ${VAR} - Failed")
|
|
|
|
set(${VAR} "" CACHE INTERNAL "Test ${VAR}")
|
|
|
|
file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log
|
2005-08-01 07:02:22 +04:00
|
|
|
"Performing C SOURCE FILE Test ${VAR} failed with the following output:\n"
|
|
|
|
"${OUTPUT}\n"
|
2007-04-04 23:59:22 +04:00
|
|
|
"Source file was:\n${SOURCE}\n")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
endmacro()
|
2007-04-04 23:59:22 +04:00
|
|
|
|