diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-01-04 01:03:35 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-01-04 01:03:35 (GMT) |
commit | 668b3f3cea574a48240242c64e45300965f8bb84 (patch) | |
tree | 58c1fab399bf139235bfc09ef9dec3096a52ca39 /Modules/CheckFunctionExists.cmake | |
parent | e720b84d6b6622a0e8780bd87fc9d364658de3f0 (diff) | |
download | CMake-668b3f3cea574a48240242c64e45300965f8bb84.zip CMake-668b3f3cea574a48240242c64e45300965f8bb84.tar.gz CMake-668b3f3cea574a48240242c64e45300965f8bb84.tar.bz2 |
Fix problems with required flags
Diffstat (limited to 'Modules/CheckFunctionExists.cmake')
-rw-r--r-- | Modules/CheckFunctionExists.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/CheckFunctionExists.cmake b/Modules/CheckFunctionExists.cmake index 7d69238..191bd5e 100644 --- a/Modules/CheckFunctionExists.cmake +++ b/Modules/CheckFunctionExists.cmake @@ -8,8 +8,8 @@ MACRO(CHECK_FUNCTION_EXISTS FUNCTION VARIABLE) IF("${VARIABLE}" MATCHES "^${VARIABLE}$") - SET(MACRO_CHECK_FUNCTION_DEFINITIONS -DCHECK_FUNCTION_EXISTS=${FUNCTION} - ${CMAKE_REQUIRED_FLAGS}) + SET(MACRO_CHECK_FUNCTION_DEFINITIONS + "-DCHECK_FUNCTION_EXISTS=${FUNCTION} ${CMAKE_REQUIRED_FLAGS}") MESSAGE(STATUS "Looking for ${FUNCTION}") IF(CMAKE_REQUIRED_LIBRARIES) SET(CHECK_FUNCTION_EXISTS_ADD_LIBRARIES |