2018-02-26 16:05:16 +01:00
|
|
|
# ArduinoJson - arduinojson.org
|
|
|
|
# Copyright Benoit Blanchon 2014-2018
|
|
|
|
# MIT License
|
|
|
|
|
|
|
|
add_executable(JsonParserTests
|
2018-03-18 14:50:52 +01:00
|
|
|
DynamicJsonArray.cpp
|
|
|
|
DynamicJsonObject.cpp
|
|
|
|
DynamicJsonVariant.cpp
|
2018-03-09 16:58:01 +01:00
|
|
|
JsonError.cpp
|
2018-02-26 16:05:16 +01:00
|
|
|
nestingLimit.cpp
|
|
|
|
StaticJsonArray.cpp
|
|
|
|
StaticJsonObject.cpp
|
2018-03-18 14:50:52 +01:00
|
|
|
StaticJsonVariant.cpp
|
2018-02-26 16:05:16 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
target_link_libraries(JsonParserTests catch)
|
|
|
|
add_test(JsonParser JsonParserTests)
|