mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-04-28 21:57:57 +03:00
10 lines
273 B
CMake
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}
|
|
)
|