2018-03-01 09:24:58 +01:00
|
|
|
# ArduinoJson - arduinojson.org
|
|
|
|
# Copyright Benoit Blanchon 2014-2018
|
|
|
|
# MIT License
|
|
|
|
|
|
|
|
add_executable(JsonSerializerTests
|
|
|
|
JsonArray.cpp
|
|
|
|
JsonArrayPretty.cpp
|
|
|
|
JsonObject.cpp
|
|
|
|
JsonObjectPretty.cpp
|
|
|
|
JsonVariant.cpp
|
2018-08-21 18:07:41 +02:00
|
|
|
misc.cpp
|
2018-05-14 17:12:59 +02:00
|
|
|
std_stream.cpp
|
|
|
|
std_string.cpp
|
2018-03-01 09:24:58 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
target_link_libraries(JsonSerializerTests catch)
|
|
|
|
add_test(JsonSerializer JsonSerializerTests)
|