CMakeLists.txt 430 B

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