2017-11-07 20:42:50 +01:00
|
|
|
# ArduinoJson - arduinojson.org
|
2018-01-05 09:20:01 +01:00
|
|
|
# Copyright Benoit Blanchon 2014-2018
|
2017-04-10 15:36:59 +02:00
|
|
|
# MIT License
|
|
|
|
|
|
|
|
add_executable(JsonArrayTests
|
|
|
|
add.cpp
|
|
|
|
copyFrom.cpp
|
|
|
|
copyTo.cpp
|
2018-07-12 09:08:20 +02:00
|
|
|
createNested.cpp
|
2018-10-12 12:00:27 +02:00
|
|
|
equals.cpp
|
2018-11-30 14:26:15 +01:00
|
|
|
get.cpp
|
2018-07-12 09:08:20 +02:00
|
|
|
isNull.cpp
|
2017-04-10 15:36:59 +02:00
|
|
|
iterator.cpp
|
2019-01-16 09:50:57 +01:00
|
|
|
memoryUsage.cpp
|
2019-01-17 09:55:51 +01:00
|
|
|
nesting.cpp
|
2017-04-12 17:03:33 +02:00
|
|
|
remove.cpp
|
2018-01-14 13:46:28 +01:00
|
|
|
size.cpp
|
2018-05-14 17:12:59 +02:00
|
|
|
std_string.cpp
|
2017-04-10 15:36:59 +02:00
|
|
|
subscript.cpp
|
2018-07-12 09:08:20 +02:00
|
|
|
undefined.cpp
|
2017-04-10 15:36:59 +02:00
|
|
|
)
|
|
|
|
|
2017-04-18 18:22:24 +02:00
|
|
|
target_link_libraries(JsonArrayTests catch)
|
2017-04-10 15:36:59 +02:00
|
|
|
add_test(JsonArray JsonArrayTests)
|