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

29 lines
450 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(JsonObjectTests
2021-06-26 11:23:40 +02:00
clear.cpp
containsKey.cpp
2018-10-04 11:16:23 +02:00
copy.cpp
2018-08-22 14:37:17 +02:00
createNestedArray.cpp
createNestedObject.cpp
equals.cpp
invalid.cpp
isNull.cpp
iterator.cpp
memoryUsage.cpp
nesting.cpp
remove.cpp
size.cpp
std_string.cpp
subscript.cpp
)
add_test(JsonObject JsonObjectTests)
2021-04-25 11:38:19 +02:00
set_tests_properties(JsonObject
PROPERTIES
LABELS "Catch"
)