CMakeLists.txt 317 B

123456789101112131415
  1. # ArduinoJson - arduinojson.org
  2. # Copyright Benoit Blanchon 2014-2023
  3. # MIT License
  4. add_executable(DynamicJsonBufferTests
  5. alloc.cpp
  6. createArray.cpp
  7. createObject.cpp
  8. no_memory.cpp
  9. size.cpp
  10. startString.cpp
  11. )
  12. target_link_libraries(DynamicJsonBufferTests catch)
  13. add_test(DynamicJsonBuffer DynamicJsonBufferTests)