CMakeLists.txt 275 B

1234567891011121314
  1. # ArduinoJson - arduinojson.org
  2. # Copyright Benoit Blanchon 2014-2023
  3. # MIT License
  4. add_executable(JsonBufferTests
  5. nested.cpp
  6. nestingLimit.cpp
  7. parse.cpp
  8. parseArray.cpp
  9. parseObject.cpp
  10. )
  11. target_link_libraries(JsonBufferTests catch)
  12. add_test(JsonBuffer JsonBufferTests)