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

15 lines
277 B
CMake
Raw Normal View History

2018-09-03 16:14:21 +02:00
# ArduinoJson - arduinojson.org
2020-01-09 15:48:38 +01:00
# Copyright Benoit Blanchon 2014-2020
2018-09-03 16:14:21 +02:00
# MIT License
add_executable(MemoryPoolTests
allocVariant.cpp
allocString.cpp
clear.cpp
2018-09-03 16:14:21 +02:00
size.cpp
StringBuilder.cpp
2018-09-03 16:14:21 +02:00
)
target_link_libraries(MemoryPoolTests catch)
add_test(MemoryPool MemoryPoolTests)