CMakeLists.txt 393 B

1234567891011121314151617181920212223242526
  1. # ArduinoJson - https://arduinojson.org
  2. # Copyright © 2014-2024, 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. std_string.cpp
  16. subscript.cpp
  17. unbound.cpp
  18. )
  19. add_test(JsonArray JsonArrayTests)
  20. set_tests_properties(JsonArray
  21. PROPERTIES
  22. LABELS "Catch"
  23. )