3207606f11
- CMakeLists.txt * add OS specific compiler flags and library * add checking size of time_t * add checking memmem() - tests/CMakeLists.txt * add if(HAVE_MEMMEM) for explicit_bzero * add checking SMALL_TIME_T for rfc5280time - crypto/CMakeLists.txt * add getentropy_hpux.c - tls/CMakeLists.txt * fix checking strsep
37 lines
724 B
CMake
37 lines
724 B
CMake
include_directories(
|
|
.
|
|
../include
|
|
../include/compat
|
|
)
|
|
|
|
set(
|
|
TLS_SRC
|
|
tls.c
|
|
tls_client.c
|
|
tls_config.c
|
|
tls_conninfo.c
|
|
tls_server.c
|
|
tls_peer.c
|
|
tls_util.c
|
|
tls_verify.c
|
|
)
|
|
|
|
|
|
if(NOT HAVE_STRSEP)
|
|
set(TLS_SRC ${TLS_SRC} strsep.c)
|
|
endif()
|
|
|
|
if (BUILD_SHARED)
|
|
add_library(tls-objects OBJECT ${TLS_SRC})
|
|
add_library(tls STATIC $<TARGET_OBJECTS:tls-objects>)
|
|
add_library(tls-shared SHARED $<TARGET_OBJECTS:tls-objects>)
|
|
set_target_properties(tls-shared PROPERTIES OUTPUT_NAME tls)
|
|
set_target_properties(tls-shared PROPERTIES VERSION ${TLS_VERSION}
|
|
SOVERSION ${TLS_MAJOR_VERSION})
|
|
install(TARGETS tls tls-shared DESTINATION lib)
|
|
else()
|
|
add_library(tls STATIC ${TLS_SRC})
|
|
install(TARGETS tls DESTINATION lib)
|
|
endif()
|
|
|