CMakeLists.txt 377 B

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