mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-06-25 01:11:35 +02:00
26 lines
377 B
CMake
26 lines
377 B
CMake
# ArduinoJson - https://arduinojson.org
|
|
# Copyright © 2014-2025, Benoit BLANCHON
|
|
# MIT License
|
|
|
|
add_executable(JsonArrayTests
|
|
add.cpp
|
|
clear.cpp
|
|
compare.cpp
|
|
copyArray.cpp
|
|
equals.cpp
|
|
isNull.cpp
|
|
iterator.cpp
|
|
nesting.cpp
|
|
remove.cpp
|
|
size.cpp
|
|
subscript.cpp
|
|
unbound.cpp
|
|
)
|
|
|
|
add_test(JsonArray JsonArrayTests)
|
|
|
|
set_tests_properties(JsonArray
|
|
PROPERTIES
|
|
LABELS "Catch"
|
|
)
|