mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-23 15:27:30 +02:00
* Added DynamicJsonArray and StaticJsonArray * Added DynamicJsonObject and StaticJsonObject * Added DynamicJsonVariant and StaticJsonVariant * Added deserializeJson() * Removed JsonBuffer::parseArray(), parseObject() and parse() * Removed JsonBuffer::createArray() and createObject()
13 lines
264 B
CMake
13 lines
264 B
CMake
# ArduinoJson - arduinojson.org
|
|
# Copyright Benoit Blanchon 2014-2018
|
|
# MIT License
|
|
|
|
add_executable(StaticJsonBufferTests
|
|
alloc.cpp
|
|
size.cpp
|
|
startString.cpp
|
|
)
|
|
|
|
target_link_libraries(StaticJsonBufferTests catch)
|
|
add_test(StaticJsonBuffer StaticJsonBufferTests)
|