CMakeLists.txt 277 B

1234567891011121314
  1. # ArduinoJson - arduinojson.org
  2. # Copyright Benoit Blanchon 2014-2019
  3. # MIT License
  4. add_executable(MemoryPoolTests
  5. allocVariant.cpp
  6. allocString.cpp
  7. clear.cpp
  8. size.cpp
  9. StringBuilder.cpp
  10. )
  11. target_link_libraries(MemoryPoolTests catch)
  12. add_test(MemoryPool MemoryPoolTests)