mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-22 23:07:29 +02:00
23 lines
352 B
CMake
23 lines
352 B
CMake
# ArduinoJson - arduinojson.org
|
|
# Copyright Benoit Blanchon 2014-2018
|
|
# MIT License
|
|
|
|
add_executable(JsonVariantTests
|
|
as.cpp
|
|
compare.cpp
|
|
copy.cpp
|
|
get.cpp
|
|
is.cpp
|
|
isnull.cpp
|
|
memoryUsage.cpp
|
|
nesting.cpp
|
|
misc.cpp
|
|
or.cpp
|
|
set.cpp
|
|
subscript.cpp
|
|
undefined.cpp
|
|
)
|
|
|
|
target_link_libraries(JsonVariantTests catch)
|
|
add_test(JsonVariant JsonVariantTests)
|