CMakeLists.txt 264 B

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