Files
ArduinoJson/extras/tests/JsonDocument/CMakeLists.txt

32 lines
502 B
CMake
Raw Normal View History

# ArduinoJson - https://arduinojson.org
2023-02-16 11:45:01 +01:00
# Copyright © 2014-2023, Benoit BLANCHON
# MIT License
add_executable(JsonDocumentTests
add.cpp
2023-03-20 14:49:08 +01:00
allocator.cpp
cast.cpp
compare.cpp
containsKey.cpp
createNested.cpp
DynamicJsonDocument.cpp
ElementProxy.cpp
isNull.cpp
issue1120.cpp
MemberProxy.cpp
nesting.cpp
overflowed.cpp
remove.cpp
shrinkToFit.cpp
2019-02-25 11:07:01 +01:00
size.cpp
2019-01-23 11:43:29 +01:00
subscript.cpp
swap.cpp
)
add_test(JsonDocument JsonDocumentTests)
2021-04-25 11:38:19 +02:00
set_tests_properties(JsonDocument
PROPERTIES
2023-02-09 10:00:38 +01:00
LABELS "Catch"
)