forked from bblanchon/ArduinoJson
19 lines
347 B
CMake
19 lines
347 B
CMake
# ArduinoJson - arduinojson.org
|
|
# Copyright Benoit Blanchon 2014-2019
|
|
# MIT License
|
|
|
|
add_executable(JsonDocumentTests
|
|
add.cpp
|
|
createNested.cpp
|
|
DynamicJsonDocument.cpp
|
|
isNull.cpp
|
|
nesting.cpp
|
|
remove.cpp
|
|
size.cpp
|
|
StaticJsonDocument.cpp
|
|
subscript.cpp
|
|
)
|
|
|
|
target_link_libraries(JsonDocumentTests catch)
|
|
add_test(JsonDocument JsonDocumentTests)
|