You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
480 B
34 lines
480 B
3 years ago
|
# ArduinoJson - https://arduinojson.org
|
||
|
# Copyright Benoit Blanchon 2014-2021
|
||
|
# MIT License
|
||
|
|
||
|
add_executable(JsonVariantTests
|
||
|
add.cpp
|
||
|
as.cpp
|
||
|
clear.cpp
|
||
|
compare.cpp
|
||
|
containsKey.cpp
|
||
|
copy.cpp
|
||
|
converters.cpp
|
||
|
createNested.cpp
|
||
|
is.cpp
|
||
|
isnull.cpp
|
||
|
memoryUsage.cpp
|
||
|
misc.cpp
|
||
|
nesting.cpp
|
||
|
or.cpp
|
||
|
overflow.cpp
|
||
|
remove.cpp
|
||
|
set.cpp
|
||
|
subscript.cpp
|
||
|
types.cpp
|
||
|
undefined.cpp
|
||
|
)
|
||
|
|
||
|
add_test(JsonVariant JsonVariantTests)
|
||
|
|
||
|
set_tests_properties(JsonVariant
|
||
|
PROPERTIES
|
||
|
LABELS "Catch"
|
||
|
)
|