CMakeLists.txt 400 B

1234567891011121314151617181920212223242526
  1. # ArduinoJson - https://arduinojson.org
  2. # Copyright © 2014-2024, Benoit BLANCHON
  3. # MIT License
  4. add_executable(JsonObjectTests
  5. clear.cpp
  6. compare.cpp
  7. containsKey.cpp
  8. copy.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(JsonObject JsonObjectTests)
  20. set_tests_properties(JsonObject
  21. PROPERTIES
  22. LABELS "Catch"
  23. )