Files
ArduinoJson/test/JsonObject/CMakeLists.txt

24 lines
410 B
CMake
Raw Normal View History

# ArduinoJson - arduinojson.org
2018-01-05 09:20:01 +01:00
# Copyright Benoit Blanchon 2014-2018
# 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
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 catch)
add_test(JsonObject JsonObjectTests)