CMakeLists.txt 382 B

12345678910111213141516171819202122232425
  1. # ArduinoJson - https://arduinojson.org
  2. # Copyright © 2014-2025, Benoit BLANCHON
  3. # MIT License
  4. add_executable(JsonObjectTests
  5. clear.cpp
  6. compare.cpp
  7. equals.cpp
  8. isNull.cpp
  9. iterator.cpp
  10. nesting.cpp
  11. remove.cpp
  12. set.cpp
  13. size.cpp
  14. std_string.cpp
  15. subscript.cpp
  16. unbound.cpp
  17. )
  18. add_test(JsonObject JsonObjectTests)
  19. set_tests_properties(JsonObject
  20. PROPERTIES
  21. LABELS "Catch"
  22. )