Files
ArduinoJson/extras/fuzzing/CMakeLists.txt
2020-04-07 21:43:10 +02:00

24 lines
385 B
CMake

# ArduinoJson - arduinojson.org
# Copyright Benoit Blanchon 2014-2020
# MIT License
if(MSVC)
add_compile_options(-D_CRT_SECURE_NO_WARNINGS)
endif()
add_executable(msgpack_fuzzer
msgpack_fuzzer.cpp
fuzzer_main.cpp
)
target_link_libraries(msgpack_fuzzer
ArduinoJson
)
add_executable(json_fuzzer
json_fuzzer.cpp
fuzzer_main.cpp
)
target_link_libraries(json_fuzzer
ArduinoJson
)