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

19 lines
305 B
CMake
Raw Normal View History

# ArduinoJson - https://arduinojson.org
2023-02-16 11:45:01 +01:00
# Copyright © 2014-2023, Benoit BLANCHON
2018-09-03 16:14:21 +02:00
# MIT License
2023-02-09 10:00:38 +01:00
add_executable(MemoryPoolTests
allocVariant.cpp
clear.cpp
saveString.cpp
2018-09-03 16:14:21 +02:00
size.cpp
StringCopier.cpp
2018-09-03 16:14:21 +02:00
)
add_test(MemoryPool MemoryPoolTests)
2021-04-25 11:38:19 +02:00
set_tests_properties(MemoryPool
PROPERTIES
2023-02-09 10:00:38 +01:00
LABELS "Catch"
)