CMakeLists.txt 509 B

1234567891011121314151617181920212223242526272829303132333435
  1. # ArduinoJson - https://arduinojson.org
  2. # Copyright © 2014-2022, Benoit BLANCHON
  3. # MIT License
  4. add_executable(JsonVariantTests
  5. add.cpp
  6. as.cpp
  7. clear.cpp
  8. compare.cpp
  9. containsKey.cpp
  10. converters.cpp
  11. copy.cpp
  12. createNested.cpp
  13. is.cpp
  14. isnull.cpp
  15. memoryUsage.cpp
  16. misc.cpp
  17. nesting.cpp
  18. or.cpp
  19. overflow.cpp
  20. remove.cpp
  21. set.cpp
  22. shallowCopy.cpp
  23. size.cpp
  24. subscript.cpp
  25. types.cpp
  26. unbound.cpp
  27. )
  28. add_test(JsonVariant JsonVariantTests)
  29. set_tests_properties(JsonVariant
  30. PROPERTIES
  31. LABELS "Catch"
  32. )