CMakeLists.txt 322 B

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