mirror of https://github.com/coturn/coturn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
600 B
17 lines
600 B
add_executable(FuzzStun FuzzStun.c)
|
|
target_link_libraries(FuzzStun turnclient ${LIB_FUZZING_ENGINE})
|
|
|
|
file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/input/FuzzStun_seed_corpus.zip
|
|
DESTINATION ${CMAKE_CURRENT_BINARY_DIR})
|
|
|
|
|
|
set(FuzzStunClientSRC
|
|
${CMAKE_CURRENT_SOURCE_DIR}/FuzzStunClient.c
|
|
${PROJECT_SOURCE_DIR}/src/apps/common/stun_buffer.c
|
|
)
|
|
|
|
add_executable(FuzzStunClient ${FuzzStunClientSRC})
|
|
target_link_libraries(FuzzStunClient turnclient ${LIB_FUZZING_ENGINE})
|
|
|
|
file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/input/FuzzStunClient_seed_corpus.zip
|
|
DESTINATION ${CMAKE_CURRENT_BINARY_DIR})
|
|
|