2018-11-03 20:21:33 +00:00
|
|
|
# ArduinoJson - arduinojson.org
|
|
|
|
# Copyright Benoit Blanchon 2014-2018
|
|
|
|
# MIT License
|
|
|
|
|
|
|
|
add_executable(JsonArrayTests
|
|
|
|
add.cpp
|
|
|
|
copyFrom.cpp
|
|
|
|
copyTo.cpp
|
|
|
|
createNested.cpp
|
2018-11-13 14:50:48 +00:00
|
|
|
equals.cpp
|
2018-11-03 20:21:33 +00:00
|
|
|
isNull.cpp
|
|
|
|
iterator.cpp
|
|
|
|
remove.cpp
|
|
|
|
set.cpp
|
|
|
|
size.cpp
|
|
|
|
std_string.cpp
|
|
|
|
subscript.cpp
|
|
|
|
undefined.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
target_link_libraries(JsonArrayTests catch)
|
|
|
|
add_test(JsonArray JsonArrayTests)
|