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
|
|
|
)
|
|
|
|
|
2021-10-20 18:14:23 +02:00
|
|
|
if(GEN_FILES)
|
2021-10-20 13:29:47 +02:00
|
|
|
# Inform CMake that the following file will be generated as part of the build
|
2021-09-08 13:27:09 +02:00
|
|
|
# process, so it doesn't complain that it doesn't exist yet. Starting from
|
|
|
|
# CMake 3.20, this will no longer be necessary as CMake will automatically
|
2021-10-20 13:29:47 +02:00
|
|
|
# propagate this information across the tree, for now it's only visible
|
2021-09-08 13:27:09 +02:00
|
|
|
# inside the same directory, so we need to propagate manually.
|
|
|
|
set_source_files_properties(
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/../test/query_config.c
|
|
|
|
PROPERTIES GENERATED TRUE)
|
|
|
|
endif()
|
2021-05-14 10:07:33 +02: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
|
2021-05-11 13:45:54 +02:00
|
|
|
ssl_test_lib.c
|
2021-05-14 10:07:33 +02:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../test/query_config.h
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/../test/query_config.c)
|
2020-11-18 23:07:24 +01:00
|
|
|
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)
|
2021-05-14 10:07:33 +02:00
|
|
|
if(exe STREQUAL "ssl_client2" OR exe STREQUAL "ssl_server2")
|
2021-10-20 18:14:23 +02:00
|
|
|
if(GEN_FILES)
|
2021-09-08 13:27:09 +02:00
|
|
|
add_dependencies(${exe} generate_query_config_c)
|
|
|
|
endif()
|
2021-05-14 10:07:33 +02:00
|
|
|
target_include_directories(${exe}
|
|
|
|
PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/../test)
|
|
|
|
endif()
|
2020-06-05 11:15:31 +02:00
|
|
|
endforeach()
|
2020-06-05 11:47:07 +02: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)
|