CMakeLists.txt 324 B

12345678910111213141516171819
  1. # ArduinoJson - https://arduinojson.org
  2. # Copyright © 2014-2025, Benoit BLANCHON
  3. # MIT License
  4. add_executable(JsonArrayConstTests
  5. equals.cpp
  6. isNull.cpp
  7. iterator.cpp
  8. nesting.cpp
  9. size.cpp
  10. subscript.cpp
  11. )
  12. add_test(JsonArrayConst JsonArrayConstTests)
  13. set_tests_properties(JsonArrayConst
  14. PROPERTIES
  15. LABELS "Catch"
  16. )