forked from bblanchon/ArduinoJson
Removed `JsonObject::is<T>(k)` and `JsonObject::set(k,v)` Replaced `T JsonArray::get<T>(i)` with `JsonVariant JsonArray::get(i)` Replaced `T JsonObject::get<T>(k)` with `JsonVariant JsonObject::get(k)`
22 lines
380 B
CMake
22 lines
380 B
CMake
# ArduinoJson - arduinojson.org
|
|
# Copyright Benoit Blanchon 2014-2018
|
|
# MIT License
|
|
|
|
add_executable(JsonObjectTests
|
|
containsKey.cpp
|
|
copy.cpp
|
|
createNestedArray.cpp
|
|
createNestedObject.cpp
|
|
equals.cpp
|
|
invalid.cpp
|
|
isNull.cpp
|
|
iterator.cpp
|
|
remove.cpp
|
|
size.cpp
|
|
std_string.cpp
|
|
subscript.cpp
|
|
)
|
|
|
|
target_link_libraries(JsonObjectTests catch)
|
|
add_test(JsonObject JsonObjectTests)
|