mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-01 08:48:30 +01:00
20 lines
322 B
CMake
20 lines
322 B
CMake
# ArduinoJson - arduinojson.org
|
|
# Copyright Benoit Blanchon 2014-2019
|
|
# MIT License
|
|
|
|
add_executable(JsonVariantTests
|
|
as.cpp
|
|
compare.cpp
|
|
copy.cpp
|
|
is.cpp
|
|
or.cpp
|
|
printTo.cpp
|
|
set_get.cpp
|
|
subscript.cpp
|
|
success.cpp
|
|
undefined.cpp
|
|
)
|
|
|
|
target_link_libraries(JsonVariantTests catch)
|
|
add_test(JsonVariant JsonVariantTests)
|