CMakeLists.txt 391 B

12345678910111213141516171819202122
  1. # ArduinoJson - arduinojson.org
  2. # Copyright Benoit Blanchon 2014-2023
  3. # MIT License
  4. add_executable(JsonObjectTests
  5. basics.cpp
  6. containsKey.cpp
  7. createNestedArray.cpp
  8. createNestedObject.cpp
  9. get.cpp
  10. invalid.cpp
  11. iterator.cpp
  12. prettyPrintTo.cpp
  13. printTo.cpp
  14. remove.cpp
  15. set.cpp
  16. size.cpp
  17. subscript.cpp
  18. )
  19. target_link_libraries(JsonObjectTests catch)
  20. add_test(JsonObject JsonObjectTests)