1234567891011121314151617181920212223242526272829303132333435 |
- # ArduinoJson - https://arduinojson.org
- # Copyright © 2014-2022, Benoit BLANCHON
- # MIT License
- add_executable(JsonVariantTests
- add.cpp
- as.cpp
- clear.cpp
- compare.cpp
- containsKey.cpp
- converters.cpp
- copy.cpp
- createNested.cpp
- is.cpp
- isnull.cpp
- memoryUsage.cpp
- misc.cpp
- nesting.cpp
- or.cpp
- overflow.cpp
- remove.cpp
- set.cpp
- shallowCopy.cpp
- size.cpp
- subscript.cpp
- types.cpp
- unbound.cpp
- )
- add_test(JsonVariant JsonVariantTests)
- set_tests_properties(JsonVariant
- PROPERTIES
- LABELS "Catch"
- )
|