2013-12-19 14:40:58 +00:00
|
|
|
find_package(Threads)
|
|
|
|
|
2011-01-18 16:18:38 +00:00
|
|
|
set(libs
|
2020-10-13 15:30:41 +00:00
|
|
|
${mbedtls_target}
|
2011-01-18 16:18:38 +00:00
|
|
|
)
|
|
|
|
|
2020-06-05 09:15:31 +00:00
|
|
|
set(executables
|
2015-06-25 07:20:03 +00:00
|
|
|
dtls_client
|
|
|
|
dtls_server
|
2020-04-03 09:56:06 +00:00
|
|
|
mini_client
|
2015-06-25 07:20:03 +00:00
|
|
|
ssl_client1
|
|
|
|
ssl_client2
|
2020-06-05 09:51:28 +00:00
|
|
|
ssl_context_info
|
2015-06-25 07:20:03 +00:00
|
|
|
ssl_fork_server
|
|
|
|
ssl_mail_client
|
2020-04-03 09:56:06 +00:00
|
|
|
ssl_server
|
2020-06-05 09:51:28 +00:00
|
|
|
ssl_server2
|
2013-12-19 14:40:58 +00:00
|
|
|
)
|
2024-09-14 10:13:16 +00:00
|
|
|
add_dependencies(${programs_target} ${executables})
|
2024-09-14 10:18:00 +00:00
|
|
|
add_dependencies(${ssl_opt_target} ${executables})
|
2013-12-19 14:40:58 +00:00
|
|
|
|
2021-10-20 16:14:23 +00:00
|
|
|
if(GEN_FILES)
|
2021-10-20 11:29:47 +00:00
|
|
|
# Inform CMake that the following file will be generated as part of the build
|
2021-09-08 11:27:09 +00: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 11:29:47 +00:00
|
|
|
# propagate this information across the tree, for now it's only visible
|
2021-09-08 11:27:09 +00: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 08:07:33 +00:00
|
|
|
|
2020-06-05 09:15:31 +00:00
|
|
|
foreach(exe IN LISTS executables)
|
2020-11-18 22:07:24 +00:00
|
|
|
set(extra_sources "")
|
|
|
|
if(exe STREQUAL "ssl_client2" OR exe STREQUAL "ssl_server2")
|
|
|
|
list(APPEND extra_sources
|
2021-05-11 11:45:54 +00:00
|
|
|
ssl_test_lib.c
|
2021-05-14 08:07:33 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../test/query_config.h
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/../test/query_config.c)
|
2020-11-18 22:07:24 +00:00
|
|
|
endif()
|
2024-11-14 10:15:40 +00:00
|
|
|
add_executable(${exe} ${exe}.c $<TARGET_OBJECTS:tf_psa_crypto_test>
|
2020-11-18 22:07:24 +00:00
|
|
|
${extra_sources})
|
2024-10-07 14:17:07 +00:00
|
|
|
set_base_compile_options(${exe})
|
2023-12-15 17:14:34 +00:00
|
|
|
target_link_libraries(${exe} ${libs} ${CMAKE_THREAD_LIBS_INIT})
|
2024-11-04 14:18:27 +00:00
|
|
|
target_include_directories(${exe} PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/../../framework/tests/include
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../../tests/include)
|
2021-05-14 08:07:33 +00:00
|
|
|
if(exe STREQUAL "ssl_client2" OR exe STREQUAL "ssl_server2")
|
2021-10-20 16:14:23 +00:00
|
|
|
if(GEN_FILES)
|
2021-09-08 11:27:09 +00:00
|
|
|
add_dependencies(${exe} generate_query_config_c)
|
|
|
|
endif()
|
2021-05-14 08:07:33 +00:00
|
|
|
target_include_directories(${exe}
|
|
|
|
PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/../test)
|
|
|
|
endif()
|
2020-06-05 09:15:31 +00:00
|
|
|
endforeach()
|
2020-06-05 09:47:07 +00:00
|
|
|
|
2013-12-19 14:40:58 +00:00
|
|
|
if(THREADS_FOUND)
|
2024-11-14 10:15:40 +00:00
|
|
|
add_executable(ssl_pthread_server ssl_pthread_server.c $<TARGET_OBJECTS:tf_psa_crypto_test>)
|
2024-10-07 14:17:07 +00:00
|
|
|
set_base_compile_options(ssl_pthread_server)
|
2024-11-04 14:18:27 +00:00
|
|
|
target_include_directories(ssl_pthread_server PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/../../framework/tests/include
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../../tests/include)
|
2013-12-30 14:25:08 +00:00
|
|
|
target_link_libraries(ssl_pthread_server ${libs} ${CMAKE_THREAD_LIBS_INIT})
|
2020-06-05 09:15:31 +00:00
|
|
|
list(APPEND executables ssl_pthread_server)
|
2013-12-19 14:40:58 +00:00
|
|
|
endif(THREADS_FOUND)
|
|
|
|
|
2020-06-05 09:15:31 +00:00
|
|
|
install(TARGETS ${executables}
|
2011-01-05 15:07:54 +00:00
|
|
|
DESTINATION "bin"
|
|
|
|
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
|