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

19 lines
304 B
CMake
Raw Normal View History

# ArduinoJson - https://arduinojson.org
2021-01-25 09:14:15 +01:00
# Copyright Benoit Blanchon 2014-2021
2018-09-03 16:14:21 +02:00
# MIT License
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
LABELS "Catch"
)