summaryrefslogtreecommitdiffstats
path: root/Modules/CheckVariableExists.cmake
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2002-12-17 19:54:25 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2002-12-17 19:54:25 (GMT)
commitbd74882d3e0e4e5fe6c9353fa8b6f28a3adec9c2 (patch)
treed88004c142250964ce50a697fa9bbb9ec09ee57a /Modules/CheckVariableExists.cmake
parent5abc8c18c08f2057ef2b9962757bab10b751e740 (diff)
downloadCMake-bd74882d3e0e4e5fe6c9353fa8b6f28a3adec9c2.zip
CMake-bd74882d3e0e4e5fe6c9353fa8b6f28a3adec9c2.tar.gz
CMake-bd74882d3e0e4e5fe6c9353fa8b6f28a3adec9c2.tar.bz2
ENH: use CMAKE_ROOT and not PROJECT_ for try compile stuff, this allows projects within projects to have different languages
Diffstat (limited to 'Modules/CheckVariableExists.cmake')
-rw-r--r--Modules/CheckVariableExists.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/CheckVariableExists.cmake b/Modules/CheckVariableExists.cmake
index 9eaf73b..b6e3a78 100644
--- a/Modules/CheckVariableExists.cmake
+++ b/Modules/CheckVariableExists.cmake
@@ -9,7 +9,7 @@ MACRO(CHECK_VARIABLE_EXISTS VAR VARIABLE)
IF("${VARIABLE}" MATCHES "^${VARIABLE}$")
SET(MACRO_CHECK_VARIABLE_DEFINITIONS -DCHECK_VARIABLE_EXISTS=${VAR})
TRY_COMPILE(${VARIABLE}
- ${PROJECT_BINARY_DIR}
+ ${CMAKE_BINARY_DIR}
${CMAKE_ROOT}/Modules/CheckVariableExists.c
CMAKE_FLAGS -DCOMPILE_DEFINITIONS:STRING=${MACRO_CHECK_VARIABLE_DEFINITIONS}
OUTPUT_VARIABLE OUTPUT)
@@ -17,7 +17,7 @@ MACRO(CHECK_VARIABLE_EXISTS VAR VARIABLE)
SET(${VARIABLE} 1 CACHE INTERNAL "Have variable ${VAR}")
ELSE(${VARIABLE})
SET(${VARIABLE} "" CACHE INTERNAL "Have variable ${VAR}")
- WRITE_FILE(${PROJECT_BINARY_DIR}/CMakeError.log
+ WRITE_FILE(${CMAKE_BINARY_DIR}/CMakeError.log
"Determining if the variable ${VAR} exists failed with the following output:\n"
"${OUTPUT}\n" APPEND)
ENDIF(${VARIABLE})