17 lines
340 B
CMake
17 lines
340 B
CMake
|
# ArduinoJson - arduinojson.org
|
||
|
# Copyright Benoit Blanchon 2014-2018
|
||
|
# MIT License
|
||
|
|
||
|
add_executable(JsonSerializerTests
|
||
|
JsonArray.cpp
|
||
|
JsonArrayPretty.cpp
|
||
|
JsonObject.cpp
|
||
|
JsonObjectPretty.cpp
|
||
|
JsonVariant.cpp
|
||
|
std_stream.cpp
|
||
|
std_string.cpp
|
||
|
)
|
||
|
|
||
|
target_link_libraries(JsonSerializerTests catch)
|
||
|
add_test(JsonSerializer JsonSerializerTests)
|