2023-02-08 11:04:11 +00:00
|
|
|
if (ENABLE_SSL)
|
|
|
|
file (GLOB SRCS src/*.cpp)
|
|
|
|
|
|
|
|
add_library (_poco_crypto ${SRCS})
|
|
|
|
add_library (Poco::Crypto ALIAS _poco_crypto)
|
|
|
|
|
2023-02-07 17:36:13 +00:00
|
|
|
# TODO: remove these warning exclusions
|
|
|
|
target_compile_options (_poco_crypto
|
|
|
|
PRIVATE
|
|
|
|
-Wno-covered-switch-default
|
|
|
|
-Wno-deprecated-dynamic-exception-spec
|
|
|
|
-Wno-extra-semi-stmt
|
|
|
|
-Wno-missing-noreturn
|
|
|
|
-Wno-newline-eof
|
|
|
|
-Wno-old-style-cast
|
|
|
|
-Wno-shadow
|
|
|
|
-Wno-shorten-64-to-32
|
|
|
|
-Wno-sign-compare
|
|
|
|
-Wno-suggest-destructor-override
|
|
|
|
-Wno-suggest-override
|
|
|
|
-Wno-unreachable-code-return
|
|
|
|
-Wno-unused-parameter
|
|
|
|
-Wno-zero-as-null-pointer-constant
|
2023-02-17 21:18:30 +00:00
|
|
|
-Wno-used-but-marked-unused
|
2023-02-07 17:36:13 +00:00
|
|
|
)
|
2023-02-08 11:04:11 +00:00
|
|
|
target_include_directories (_poco_crypto SYSTEM PUBLIC "include")
|
|
|
|
target_link_libraries (_poco_crypto PUBLIC Poco::Foundation OpenSSL::SSL OpenSSL::Crypto)
|
|
|
|
|
|
|
|
message (STATUS "Using Poco::Crypto")
|
|
|
|
else ()
|
|
|
|
add_library (_poco_crypto INTERFACE)
|
|
|
|
add_library (Poco::Crypto ALIAS _poco_crypto)
|
|
|
|
|
|
|
|
message (STATUS "Not using Poco::Crypto")
|
|
|
|
endif ()
|