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

29 lines
425 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(JsonArrayTests
add.cpp
2021-06-26 11:23:40 +02:00
clear.cpp
copyArray.cpp
createNested.cpp
equals.cpp
get.cpp
isNull.cpp
iterator.cpp
memoryUsage.cpp
nesting.cpp
remove.cpp
size.cpp
std_string.cpp
subscript.cpp
undefined.cpp
)
add_test(JsonArray JsonArrayTests)
2021-04-25 11:38:19 +02:00
set_tests_properties(JsonArray
PROPERTIES
LABELS "Catch"
)