Files
ArduinoJson/test/JsonVariant/CMakeLists.txt

28 lines
418 B
CMake
Raw Normal View History

# ArduinoJson - arduinojson.org
2019-02-15 13:31:46 +01:00
# Copyright Benoit Blanchon 2014-2019
# MIT License
add_executable(JsonVariantTests
add.cpp
as.cpp
2019-02-25 11:44:22 +01:00
clear.cpp
compare.cpp
copy.cpp
createNested.cpp
is.cpp
isnull.cpp
memoryUsage.cpp
misc.cpp
nesting.cpp
or.cpp
overflow.cpp
remove.cpp
set.cpp
subscript.cpp
types.cpp
undefined.cpp
)
target_link_libraries(JsonVariantTests catch)
add_test(JsonVariant JsonVariantTests)