openmohaa/code/cpp-httplib-0.19.0/test/fuzzing/CMakeLists.txt
smallmodel 01381ed084
Some checks failed
CodeQL / Analyze (push) Waiting to run
Build branch / build-all (push) Failing after 16s
Add HTTP support and update checking
2025-02-24 02:20:31 +01:00

10 lines
273 B
CMake

file(GLOB HTTPLIB_CORPUS corpus/*)
add_executable(httplib-test-fuzz
server_fuzzer.cc
standalone_fuzz_target_runner.cpp
)
target_link_libraries(httplib-test-fuzz PRIVATE httplib)
add_test(
NAME httplib-test-fuzz
COMMAND httplib-test-fuzz ${HTTPLIB_CORPUS}
)