Files
ArduinoJson/test/MemoryPool/CMakeLists.txt

15 lines
277 B
CMake
Raw Normal View History

2018-09-03 16:14:21 +02:00
# ArduinoJson - arduinojson.org
2019-02-15 13:31:46 +01:00
# Copyright Benoit Blanchon 2014-2019
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)