mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-22 23:07:29 +02:00
14 lines
283 B
CMake
14 lines
283 B
CMake
# ArduinoJson - arduinojson.org
|
|
# Copyright Benoit Blanchon 2014-2018
|
|
# MIT License
|
|
|
|
add_executable(JsonDocumentTests
|
|
DynamicJsonDocument.cpp
|
|
nesting.cpp
|
|
isNull.cpp
|
|
StaticJsonDocument.cpp
|
|
)
|
|
|
|
target_link_libraries(JsonDocumentTests catch)
|
|
add_test(JsonDocument JsonDocumentTests)
|