mirror of
https://git.libssh.org/projects/libssh.git
synced 2026-02-04 12:20:42 +09:00
10 lines
248 B
CMake
10 lines
248 B
CMake
project(fuzzing CXX)
|
|
|
|
find_package(ClangFuzzer)
|
|
|
|
add_executable(ssh_server_fuzzer ssh_server_fuzzer.cpp)
|
|
target_link_libraries(ssh_server_fuzzer
|
|
${CLANG_FUZZER_LIBRARY}
|
|
${LIBSSH_THREADS_STATIC_LIBRARY}
|
|
${LIBSSH_THREADS_LINK_LIBRARIES})
|