5d8a1cf715
This moves the compatibility include files from include to include/compat so we can use the awful MS C compiler <../include/> trick to emulate the GNU #include_next extension. This also removes a few old compat files we do not need anymore.
23 lines
246 B
CMake
23 lines
246 B
CMake
include_directories(
|
|
.
|
|
../include
|
|
../include/compat
|
|
)
|
|
|
|
set(
|
|
TLS_SRC
|
|
tls.c
|
|
tls_client.c
|
|
tls_config.c
|
|
tls_server.c
|
|
tls_util.c
|
|
tls_verify.c
|
|
)
|
|
|
|
|
|
if(NOT HAVE_STRCASECMP)
|
|
set(TLS_SRC ${TLS_SRC} strsep.c)
|
|
endif()
|
|
|
|
add_library(tls ${TLS_SRC})
|