1
1

cmake: Fix building the ssh_server_fuzzer

Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
Reviewed-by: Anderson Toshiyuki Sasaki <ansasaki@redhat.com>
Этот коммит содержится в:
Andreas Schneider 2019-01-25 11:18:23 +01:00
родитель 22f038189c
Коммит 5a50fc6b0d

Просмотреть файл

@ -2,6 +2,10 @@ project(fuzzing CXX)
if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
add_executable(ssh_server_fuzzer ssh_server_fuzzer.cpp)
target_link_libraries(ssh_server_fuzzer
PRIVATE
${LIBSSH_STATIC_LIBRARY}
${LIBSSH_LINK_LIBRARIES})
set_target_properties(ssh_server_fuzzer
PROPERTIES
COMPILE_FLAGS "-fsanitize=fuzzer"