2013-12-30 15:25:08 +01:00
|
|
|
set(THREADS_USE_PTHREADS_WIN32 true)
|
2013-12-19 15:40:58 +01:00
|
|
|
find_package(Threads)
|
|
|
|
|
2011-01-18 17:18:38 +01:00
|
|
|
set(libs
|
2020-10-13 17:30:41 +02:00
|
|
|
${mbedtls_target}
|
2011-01-18 17:18:38 +01:00
|
|
|
)
|
|
|
|
|
2020-06-05 11:15:31 +02:00
|
|
|
set(executables
|
2015-06-25 09:20:03 +02:00
|
|
|
dtls_client
|
|
|
|
dtls_server
|
2020-04-03 11:56:06 +02:00
|
|
|
mini_client
|
2015-06-25 09:20:03 +02:00
|
|
|
ssl_client1
|
|
|
|
ssl_client2
|
2020-06-05 11:51:28 +02:00
|
|
|
ssl_context_info
|
2015-06-25 09:20:03 +02:00
|
|
|
ssl_fork_server
|
|
|
|
ssl_mail_client
|
2020-04-03 11:56:06 +02:00
|
|
|
ssl_server
|
2020-06-05 11:51:28 +02:00
|
|
|
ssl_server2
|
2013-12-19 15:40:58 +01:00
|
|
|
)
|
|
|
|
|
2020-06-05 11:15:31 +02:00
|
|
|
foreach(exe IN LISTS executables)
|
2020-11-18 23:07:24 +01:00
|
|
|
set(extra_sources "")
|
|
|
|
if(exe STREQUAL "ssl_client2" OR exe STREQUAL "ssl_server2")
|
|
|
|
list(APPEND extra_sources
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../test/query_config.c)
|
|
|
|
endif()
|
|
|
|
add_executable(${exe} ${exe}.c $<TARGET_OBJECTS:mbedtls_test>
|
|
|
|
${extra_sources})
|
2020-06-05 11:15:31 +02:00
|
|
|
target_link_libraries(${exe} ${libs})
|
2020-06-05 16:00:22 +02:00
|
|
|
target_include_directories(${exe} PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/../../tests/include)
|
2020-06-05 11:15:31 +02:00
|
|
|
endforeach()
|
2020-06-05 11:47:07 +02:00
|
|
|
|
2021-01-05 21:11:16 +01:00
|
|
|
set_property(TARGET ssl_client2 APPEND PROPERTY SOURCES
|
|
|
|
ssl_test_lib.c ${CMAKE_CURRENT_SOURCE_DIR}/../test/query_config.c)
|
|
|
|
set_property(TARGET ssl_server2 APPEND PROPERTY SOURCES
|
|
|
|
ssl_test_lib.c ${CMAKE_CURRENT_SOURCE_DIR}/../test/query_config.c)
|
2014-11-24 14:05:25 +01:00
|
|
|
|
2013-12-19 15:40:58 +01:00
|
|
|
if(THREADS_FOUND)
|
2020-06-05 16:00:22 +02:00
|
|
|
add_executable(ssl_pthread_server ssl_pthread_server.c $<TARGET_OBJECTS:mbedtls_test>)
|
2021-02-08 15:34:42 +01:00
|
|
|
target_include_directories(ssl_pthread_server PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/../../tests/include)
|
2013-12-30 15:25:08 +01:00
|
|
|
target_link_libraries(ssl_pthread_server ${libs} ${CMAKE_THREAD_LIBS_INIT})
|
2020-06-05 11:15:31 +02:00
|
|
|
list(APPEND executables ssl_pthread_server)
|
2013-12-19 15:40:58 +01:00
|
|
|
endif(THREADS_FOUND)
|
|
|
|
|
2020-06-05 11:15:31 +02:00
|
|
|
install(TARGETS ${executables}
|
2011-01-05 16:07:54 +01:00
|
|
|
DESTINATION "bin"
|
|
|
|
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
|