CMakeLists.txt 283 B

12345678910111213
  1. # ArduinoJson - arduinojson.org
  2. # Copyright Benoit Blanchon 2014-2018
  3. # MIT License
  4. add_executable(DynamicMemoryPoolTests
  5. alloc.cpp
  6. no_memory.cpp
  7. size.cpp
  8. startString.cpp
  9. )
  10. target_link_libraries(DynamicMemoryPoolTests catch)
  11. add_test(DynamicMemoryPool DynamicMemoryPoolTests)