Sha256: ccc6fd877175e4319fb972942ec4775457f4437357e74895298ec9e236244fff
Contents?: true
Size: 756 Bytes
Versions: 14
Compression:
Stored size: 756 Bytes
Contents
# Find Security.framework # This will define : # # SECURITY_FOUND # SECURITY_LIBRARIES # SECURITY_LDFLAGS # SECURITY_HAS_SSLCREATECONTEXT # FIND_PATH(SECURITY_INCLUDE_DIR NAMES Security/Security.h) FIND_LIBRARY(SECURITY_LIBRARIES NAMES Security) IF (SECURITY_INCLUDE_DIR AND SECURITY_LIBRARIES) IF (NOT Security_FIND_QUIETLY) MESSAGE("-- Found Security ${SECURITY_LIBRARIES}") ENDIF() SET(SECURITY_FOUND TRUE) SET(SECURITY_LDFLAGS "-framework Security") CHECK_LIBRARY_EXISTS("${SECURITY_LIBRARIES}" SSLCreateContext "Security/SecureTransport.h" SECURITY_HAS_SSLCREATECONTEXT) ENDIF () IF (Security_FIND_REQUIRED AND NOT SECURITY_FOUND) MESSAGE(FATAL "-- Security not found") ENDIF() MARK_AS_ADVANCED( SECURITY_INCLUDE_DIR SECURITY_LIBRARIES )
Version data entries
14 entries across 14 versions & 1 rubygems