File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -10,14 +10,14 @@ FIND_PATH(COREFOUNDATION_INCLUDE_DIR NAMES CoreFoundation.h)
1010FIND_LIBRARY (COREFOUNDATION_LIBRARIES NAMES CoreFoundation)
1111IF (COREFOUNDATION_INCLUDE_DIR AND COREFOUNDATION_LIBRARIES)
1212 IF (NOT CoreFoundation_FIND_QUIETLY)
13- MESSAGE ("-- Found CoreFoundation ${COREFOUNDATION_LIBRARIES} " )
13+ MESSAGE (STATUS " Found CoreFoundation ${COREFOUNDATION_LIBRARIES} " )
1414 ENDIF ()
1515 SET (COREFOUNDATION_FOUND TRUE )
1616 SET (COREFOUNDATION_LDFLAGS "-framework CoreFoundation" )
1717ENDIF ()
1818
1919IF (CoreFoundation_FIND_REQUIRED AND NOT COREFOUNDATION_FOUND)
20- MESSAGE (FATAL "-- CoreFoundation not found" )
20+ MESSAGE (FATAL_ERROR " CoreFoundation not found" )
2121ENDIF ()
2222
2323MARK_AS_ADVANCED (
Original file line number Diff line number Diff line change @@ -11,15 +11,15 @@ FIND_PATH(SECURITY_INCLUDE_DIR NAMES Security/Security.h)
1111FIND_LIBRARY (SECURITY_LIBRARIES NAMES Security)
1212IF (SECURITY_INCLUDE_DIR AND SECURITY_LIBRARIES)
1313 IF (NOT Security_FIND_QUIETLY)
14- MESSAGE ("-- Found Security ${SECURITY_LIBRARIES} " )
14+ MESSAGE (STATUS " Found Security ${SECURITY_LIBRARIES} " )
1515 ENDIF ()
1616 SET (SECURITY_FOUND TRUE )
1717 SET (SECURITY_LDFLAGS "-framework Security" )
1818 CHECK_LIBRARY_EXISTS("${SECURITY_LIBRARIES} " SSLCreateContext "Security/SecureTransport.h" SECURITY_HAS_SSLCREATECONTEXT)
1919ENDIF ()
2020
2121IF (Security_FIND_REQUIRED AND NOT SECURITY_FOUND)
22- MESSAGE (FATAL "-- Security not found" )
22+ MESSAGE (FATAL_ERROR " Security not found" )
2323ENDIF ()
2424
2525MARK_AS_ADVANCED (
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ IF (USE_HTTPS STREQUAL ON)
1414 IF (SECURITY_HAS_SSLCREATECONTEXT)
1515 SET (HTTPS_BACKEND "SecureTransport" )
1616 ELSE ()
17- MESSAGE ("-- Security framework is too old, falling back to OpenSSL" )
17+ MESSAGE (STATUS " Security framework is too old, falling back to OpenSSL" )
1818 SET (HTTPS_BACKEND "OpenSSL" )
1919 ENDIF ()
2020 ELSEIF (WINHTTP)
@@ -67,7 +67,7 @@ IF(HTTPS_BACKEND)
6767 ENDIF ()
6868
6969 IF (NOT CERT_LOCATION)
70- MESSAGE ("Auto-detecting default certificates location" )
70+ MESSAGE (STATUS "Auto-detecting default certificates location" )
7171 IF (CMAKE_SYSTEM_NAME MATCHES Darwin)
7272 # Check for an Homebrew installation
7373 SET (OPENSSL_CMD "/usr/local/opt/openssl/bin/openssl" )
Original file line number Diff line number Diff line change 55IF (USE_SHA1 STREQUAL ON OR USE_SHA1 STREQUAL "CollisionDetection" )
66 SET (SHA1_BACKEND "CollisionDetection" )
77ELSEIF (USE_SHA1 STREQUAL "HTTPS" )
8- message ("Checking HTTPS backend… ${HTTPS_BACKEND} " )
8+ message (STATUS "Checking HTTPS backend… ${HTTPS_BACKEND} " )
99 IF (HTTPS_BACKEND STREQUAL "SecureTransport" )
1010 SET (SHA1_BACKEND "CommonCrypto" )
1111 ELSEIF (HTTPS_BACKEND STREQUAL "WinHTTP" )
You can’t perform that action at this time.
0 commit comments