summaryrefslogtreecommitdiffstats
path: root/Modules/TestCXXAcceptsFlag.cmake
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2005-06-20 20:31:34 (GMT)
committerKen Martin <ken.martin@kitware.com>2005-06-20 20:31:34 (GMT)
commite1e7b114370aed206a741d30e43bb83f16d36c4e (patch)
tree0f70ae41c0fe319ea2484e172213afb923427a9e /Modules/TestCXXAcceptsFlag.cmake
parente6f9ea3d13d3500de8723702a558933254bbdbfe (diff)
downloadCMake-e1e7b114370aed206a741d30e43bb83f16d36c4e.zip
CMake-e1e7b114370aed206a741d30e43bb83f16d36c4e.tar.gz
CMake-e1e7b114370aed206a741d30e43bb83f16d36c4e.tar.bz2
ENH: fixed some spelling errors
Diffstat (limited to 'Modules/TestCXXAcceptsFlag.cmake')
-rw-r--r--Modules/TestCXXAcceptsFlag.cmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/TestCXXAcceptsFlag.cmake b/Modules/TestCXXAcceptsFlag.cmake
index c7bb5b2..a0cabd7 100644
--- a/Modules/TestCXXAcceptsFlag.cmake
+++ b/Modules/TestCXXAcceptsFlag.cmake
@@ -8,19 +8,19 @@
MACRO(CHECK_CXX_ACCEPTS_FLAG FLAGS VARIABLE)
IF(NOT DEFINED ${VARIABLE})
- MESSAGE(STATUS "Checking to see if CXX compiler acepts flag ${FLAGS}")
+ MESSAGE(STATUS "Checking to see if CXX compiler accepts flag ${FLAGS}")
TRY_COMPILE(${VARIABLE}
${CMAKE_BINARY_DIR}
${CMAKE_ROOT}/Modules/DummyCXXFile.cxx
CMAKE_FLAGS -DCOMPILE_DEFINITIONS:STRING=${FLAGS}
OUTPUT_VARIABLE OUTPUT)
IF(${VARIABLE})
- MESSAGE(STATUS "Checking to see if CXX compiler acepts flag ${FLAGS} - yes")
+ MESSAGE(STATUS "Checking to see if CXX compiler accepts flag ${FLAGS} - yes")
FILE(APPEND ${CMAKE_BINARY_DIR}/CMakeOutput.log
"Determining if the CXX compiler accepts the flag ${FLAGS} passed with "
"the following output:\n${OUTPUT}\n\n")
ELSE(${VARIABLE})
- MESSAGE(STATUS "Checking to see if CXX compiler acepts flag ${FLAGS} - no")
+ MESSAGE(STATUS "Checking to see if CXX compiler accepts flag ${FLAGS} - no")
FILE(APPEND ${CMAKE_BINARY_DIR}/CMakeError.log
"Determining if the CXX compiler accepts the flag ${FLAGS} failed with "
"the following output:\n${OUTPUT}\n\n")