diff options
author | Brad King <brad.king@kitware.com> | 2014-09-08 13:58:33 (GMT) |
---|---|---|
committer | Nils Gladitz <nilsgladitz@gmail.com> | 2014-09-11 19:23:24 (GMT) |
commit | 0b12815dc2feeb328a86b77328d13a328368d38b (patch) | |
tree | 96edfb2c3cc952cde49f5033cce285a0ae1f131a /Modules/TestForSSTREAM.cmake | |
parent | 188a1f236e1594fc46163fbad5e062e3978c1e5a (diff) | |
download | CMake-0b12815dc2feeb328a86b77328d13a328368d38b.zip CMake-0b12815dc2feeb328a86b77328d13a328368d38b.tar.gz CMake-0b12815dc2feeb328a86b77328d13a328368d38b.tar.bz2 |
Modules/Test*.cmake: Use if(DEFINED) to simplify conditions
Replace old hacks of the form 'if("${VAR}" MATCHES "^${VAR}$")'
with the much simpler 'if(NOT DEFINED ${VAR})'.
Diffstat (limited to 'Modules/TestForSSTREAM.cmake')
-rw-r--r-- | Modules/TestForSSTREAM.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/TestForSSTREAM.cmake b/Modules/TestForSSTREAM.cmake index 8977583..fe18ea2 100644 --- a/Modules/TestForSSTREAM.cmake +++ b/Modules/TestForSSTREAM.cmake @@ -23,7 +23,7 @@ # (To distribute this file outside of CMake, substitute the full # License text for the above reference.) -if("CMAKE_HAS_ANSI_STRING_STREAM" MATCHES "^CMAKE_HAS_ANSI_STRING_STREAM$") +if(NOT DEFINED CMAKE_HAS_ANSI_STRING_STREAM) message(STATUS "Check for sstream") try_compile(CMAKE_HAS_ANSI_STRING_STREAM ${CMAKE_BINARY_DIR} ${CMAKE_ROOT}/Modules/TestForSSTREAM.cxx |