CMakeLists.txt 345 B

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