You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
339 B
20 lines
339 B
# ArduinoJson - https://arduinojson.org
|
|
# Copyright © 2014-2024, Benoit BLANCHON
|
|
# MIT License
|
|
|
|
add_executable(JsonVariantConstTests
|
|
as.cpp
|
|
containsKey.cpp
|
|
is.cpp
|
|
isnull.cpp
|
|
nesting.cpp
|
|
size.cpp
|
|
subscript.cpp
|
|
)
|
|
|
|
add_test(JsonVariantConst JsonVariantConstTests)
|
|
|
|
set_tests_properties(JsonVariantConst
|
|
PROPERTIES
|
|
LABELS "Catch"
|
|
)
|
|
|