coturn TURN server project
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.
 
 
 
 
 
 
coturn/fuzzing/CMakeLists.txt

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})