CMakeLists.txt 284 B

1234567891011121314151617
  1. # ArduinoJson - arduinojson.org
  2. # Copyright Benoit Blanchon 2014-2019
  3. # MIT License
  4. if(MSVC)
  5. add_compile_options(-D_CRT_SECURE_NO_WARNINGS)
  6. endif()
  7. add_executable(msgpack_fuzzer
  8. msgpack_fuzzer.cpp
  9. fuzzer_main.cpp
  10. )
  11. add_executable(json_fuzzer
  12. json_fuzzer.cpp
  13. fuzzer_main.cpp
  14. )