diff options
author | Brad King <brad.king@kitware.com> | 2014-09-08 14:02:55 (GMT) |
---|---|---|
committer | Nils Gladitz <nilsgladitz@gmail.com> | 2014-09-11 19:23:24 (GMT) |
commit | 425acc522ff27014ffcc1d1f902f3702dd6c7aa7 (patch) | |
tree | c33548bb6fbaf58c1f2b8004e87021d2d3c8346d /Utilities/cmcurl/CMake | |
parent | cede5cbd53175be721ee2786cf0e482be3134fcf (diff) | |
download | CMake-425acc522ff27014ffcc1d1f902f3702dd6c7aa7.zip CMake-425acc522ff27014ffcc1d1f902f3702dd6c7aa7.tar.gz CMake-425acc522ff27014ffcc1d1f902f3702dd6c7aa7.tar.bz2 |
cmcurl: 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 'Utilities/cmcurl/CMake')
-rw-r--r-- | Utilities/cmcurl/CMake/CurlCheckCSourceCompiles.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Utilities/cmcurl/CMake/CurlCheckCSourceCompiles.cmake b/Utilities/cmcurl/CMake/CurlCheckCSourceCompiles.cmake index cfcf47b..2f427a2 100644 --- a/Utilities/cmcurl/CMake/CurlCheckCSourceCompiles.cmake +++ b/Utilities/cmcurl/CMake/CurlCheckCSourceCompiles.cmake @@ -13,7 +13,7 @@ # CMAKE_REQUIRED_LIBRARIES = list of libraries to link MACRO(CURL_CHECK_C_SOURCE_COMPILES SOURCE VAR) - IF("${VAR}" MATCHES "^${VAR}$" OR "${VAR}" MATCHES "UNKNOWN") + IF(NOT DEFINED ${VAR} OR ${VAR} MATCHES "UNKNOWN") SET(message "${VAR}") # If the number of arguments is greater than 2 (SOURCE VAR) IF(${ARGC} GREATER 2) @@ -70,5 +70,5 @@ MACRO(CURL_CHECK_C_SOURCE_COMPILES SOURCE VAR) "${OUTPUT}\n" "Source file was:\n${src}\n") ENDIF(${VAR}) - ENDIF("${VAR}" MATCHES "^${VAR}$" OR "${VAR}" MATCHES "UNKNOWN") + ENDIF() ENDMACRO(CURL_CHECK_C_SOURCE_COMPILES) |