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

34 lines
478 B
CMake
Raw Normal View History

# ArduinoJson - https://arduinojson.org
2021-01-25 09:14:15 +01:00
# Copyright Benoit Blanchon 2014-2021
# 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
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
unbound.cpp
)
add_test(JsonVariant JsonVariantTests)
2021-04-25 11:38:19 +02:00
set_tests_properties(JsonVariant
PROPERTIES
LABELS "Catch"
)