CMakeLists.txt 308 B

123456789101112131415161718
  1. # ArduinoJson - https://arduinojson.org
  2. # Copyright © 2014-2022, Benoit BLANCHON
  3. # MIT License
  4. add_executable(MemoryPoolTests
  5. allocVariant.cpp
  6. clear.cpp
  7. saveString.cpp
  8. size.cpp
  9. StringCopier.cpp
  10. )
  11. add_test(MemoryPool MemoryPoolTests)
  12. set_tests_properties(MemoryPool
  13. PROPERTIES
  14. LABELS "Catch"
  15. )