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(JsonObjectTests
|
|
|
|
containsKey.cpp
|
2018-10-04 11:16:23 +02:00
|
|
|
copy.cpp
|
2018-08-22 14:37:17 +02:00
|
|
|
createNestedArray.cpp
|
|
|
|
createNestedObject.cpp
|
2018-10-12 12:00:27 +02:00
|
|
|
equals.cpp
|
2017-04-10 15:36:59 +02:00
|
|
|
invalid.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-10 15:36:59 +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
|
|
|
|
)
|
|
|
|
|
2017-04-18 18:22:24 +02:00
|
|
|
target_link_libraries(JsonObjectTests catch)
|
2017-04-10 15:36:59 +02:00
|
|
|
add_test(JsonObject JsonObjectTests)
|