mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 08:47:17 +01:00
44 lines
1.1 KiB
CMake
44 lines
1.1 KiB
CMake
|
# Sources
|
||
|
file(GLOB SRCS_G "src/*.cpp")
|
||
|
POCO_SOURCES_AUTO(SRCS ${SRCS_G})
|
||
|
|
||
|
# Headers
|
||
|
file(GLOB_RECURSE HDRS_G "include/*.h")
|
||
|
POCO_HEADERS_AUTO(SRCS ${HDRS_G})
|
||
|
|
||
|
# Version Resource
|
||
|
if(MSVC AND BUILD_SHARED_LIBS)
|
||
|
source_group("Resources" FILES ${PROJECT_SOURCE_DIR}/DLLVersion.rc)
|
||
|
list(APPEND SRCS ${PROJECT_SOURCE_DIR}/DLLVersion.rc)
|
||
|
endif()
|
||
|
|
||
|
add_library(NetSSL ${SRCS})
|
||
|
add_library(Poco::NetSSL ALIAS NetSSL)
|
||
|
set_target_properties(NetSSL
|
||
|
PROPERTIES
|
||
|
VERSION ${SHARED_LIBRARY_VERSION} SOVERSION ${SHARED_LIBRARY_VERSION}
|
||
|
OUTPUT_NAME PocoNetSSL
|
||
|
DEFINE_SYMBOL NetSSL_EXPORTS
|
||
|
)
|
||
|
|
||
|
target_link_libraries(NetSSL PUBLIC Poco::Crypto Poco::Util Poco::Net)
|
||
|
target_include_directories(NetSSL
|
||
|
PUBLIC
|
||
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
|
||
|
$<INSTALL_INTERFACE:include>
|
||
|
PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/src
|
||
|
)
|
||
|
|
||
|
if(MSVC AND POCO_DISABLE_INTERNAL_OPENSSL AND OPENSSL_USE_STATIC_LIBS)
|
||
|
target_link_libraries(NetSSL PUBLIC ws2_32.lib Crypt32.lib)
|
||
|
endif()
|
||
|
|
||
|
POCO_INSTALL(NetSSL)
|
||
|
POCO_GENERATE_PACKAGE(NetSSL)
|
||
|
|
||
|
if(ENABLE_TESTS)
|
||
|
add_subdirectory(samples)
|
||
|
add_subdirectory(testsuite)
|
||
|
endif()
|
||
|
|