2018-05-03 16:40:24 +02:00
|
|
|
set(libs
|
2020-10-13 17:30:41 +02:00
|
|
|
${mbedtls_target}
|
2018-05-03 16:40:24 +02:00
|
|
|
)
|
|
|
|
|
2019-06-04 14:47:58 +02:00
|
|
|
find_library(FUZZINGENGINE_LIB FuzzingEngine)
|
2020-06-05 11:15:31 +02:00
|
|
|
if(FUZZINGENGINE_LIB)
|
2019-06-04 14:47:58 +02:00
|
|
|
project(fuzz CXX)
|
2020-06-05 11:15:31 +02:00
|
|
|
endif()
|
2019-06-04 14:47:58 +02:00
|
|
|
|
2020-06-05 11:15:31 +02:00
|
|
|
set(executables_no_common_c
|
|
|
|
fuzz_pubkey
|
|
|
|
fuzz_x509crl
|
|
|
|
fuzz_x509crt
|
|
|
|
fuzz_x509csr
|
2020-11-03 22:07:21 +01:00
|
|
|
fuzz_pkcs7
|
2020-06-05 11:15:31 +02:00
|
|
|
)
|
2019-06-04 14:47:58 +02:00
|
|
|
|
2020-06-05 11:15:31 +02:00
|
|
|
set(executables_with_common_c
|
2021-06-16 12:37:10 +02:00
|
|
|
fuzz_privkey
|
2020-06-05 11:15:31 +02:00
|
|
|
fuzz_client
|
|
|
|
fuzz_dtlsclient
|
|
|
|
fuzz_dtlsserver
|
|
|
|
fuzz_server
|
|
|
|
)
|
2019-06-04 14:47:58 +02:00
|
|
|
|
2020-06-05 11:15:31 +02:00
|
|
|
foreach(exe IN LISTS executables_no_common_c executables_with_common_c)
|
2019-06-04 14:47:58 +02:00
|
|
|
|
2020-11-18 23:07:24 +01:00
|
|
|
set(exe_sources ${exe}.c $<TARGET_OBJECTS:mbedtls_test>)
|
|
|
|
if(NOT FUZZINGENGINE_LIB)
|
|
|
|
list(APPEND exe_sources onefile.c)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# This emulates "if ( ... IN_LIST ... )" which becomes available in CMake 3.3
|
|
|
|
list(FIND executables_with_common_c ${exe} exe_index)
|
|
|
|
if(${exe_index} GREATER -1)
|
|
|
|
list(APPEND exe_sources common.c)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
add_executable(${exe} ${exe_sources})
|
2021-02-08 15:34:42 +01:00
|
|
|
target_include_directories(${exe} PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/../../tests/include)
|
2019-06-04 14:47:58 +02:00
|
|
|
|
2020-06-05 11:15:31 +02:00
|
|
|
if (NOT FUZZINGENGINE_LIB)
|
|
|
|
target_link_libraries(${exe} ${libs})
|
|
|
|
else()
|
|
|
|
target_link_libraries(${exe} ${libs} FuzzingEngine)
|
|
|
|
SET_TARGET_PROPERTIES(${exe} PROPERTIES LINKER_LANGUAGE CXX)
|
|
|
|
endif()
|
2019-06-04 14:47:58 +02:00
|
|
|
|
2020-06-05 11:15:31 +02:00
|
|
|
endforeach()
|