libreSSL/tls/CMakeLists.txt
Brent Cook 5d8a1cf715 add initial CMake and Visual Studio build support
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.
2015-07-21 12:08:18 -05:00

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})