Files
ArduinoJson/extras/tests/JsonVariant/CMakeLists.txt

35 lines
492 B
CMake
Raw Normal View History

# ArduinoJson - https://arduinojson.org
2022-01-01 10:00:54 +01:00
# Copyright © 2014-2022, Benoit BLANCHON
# MIT License
add_executable(JsonVariantTests
add.cpp
as.cpp
2019-02-25 11:44:22 +01:00
clear.cpp
compare.cpp
2019-03-22 09:00:00 +01:00
containsKey.cpp
converters.cpp
2022-04-27 15:00:27 +02:00
copy.cpp
createNested.cpp
is.cpp
isnull.cpp
memoryUsage.cpp
misc.cpp
nesting.cpp
or.cpp
overflow.cpp
remove.cpp
set.cpp
2022-04-27 15:00:27 +02:00
size.cpp
subscript.cpp
types.cpp
unbound.cpp
)
add_test(JsonVariant JsonVariantTests)
2021-04-25 11:38:19 +02:00
set_tests_properties(JsonVariant
PROPERTIES
LABELS "Catch"
)