forked from bblanchon/ArduinoJson
15 lines
277 B
CMake
15 lines
277 B
CMake
# ArduinoJson - arduinojson.org
|
|
# Copyright Benoit Blanchon 2014-2019
|
|
# MIT License
|
|
|
|
add_executable(MemoryPoolTests
|
|
allocVariant.cpp
|
|
allocString.cpp
|
|
clear.cpp
|
|
size.cpp
|
|
StringBuilder.cpp
|
|
)
|
|
|
|
target_link_libraries(MemoryPoolTests catch)
|
|
add_test(MemoryPool MemoryPoolTests)
|