forked from bblanchon/ArduinoJson
28 lines
426 B
CMake
28 lines
426 B
CMake
# ArduinoJson - arduinojson.org
|
|
# Copyright Benoit Blanchon 2014-2020
|
|
# MIT License
|
|
|
|
add_executable(JsonObjectTests
|
|
containsKey.cpp
|
|
copy.cpp
|
|
createNestedArray.cpp
|
|
createNestedObject.cpp
|
|
equals.cpp
|
|
invalid.cpp
|
|
isNull.cpp
|
|
iterator.cpp
|
|
memoryUsage.cpp
|
|
nesting.cpp
|
|
remove.cpp
|
|
size.cpp
|
|
std_string.cpp
|
|
subscript.cpp
|
|
)
|
|
|
|
target_link_libraries(JsonObjectTests
|
|
ArduinoJson
|
|
catch
|
|
)
|
|
|
|
add_test(JsonObject JsonObjectTests)
|