CMakeLists.txt 537 B

123456789101112131415161718192021222324252627
  1. # ArduinoJson - https://arduinojson.org
  2. # Copyright © 2014-2025, Benoit BLANCHON
  3. # MIT License
  4. add_executable(ResourceManagerTests
  5. allocVariant.cpp
  6. clear.cpp
  7. saveStaticString.cpp
  8. saveString.cpp
  9. shrinkToFit.cpp
  10. size.cpp
  11. StringBuffer.cpp
  12. StringBuilder.cpp
  13. swap.cpp
  14. )
  15. add_compile_definitions(ResourceManagerTests
  16. ARDUINOJSON_SLOT_ID_SIZE=1 # require less RAM for overflow tests
  17. ARDUINOJSON_POOL_CAPACITY=16
  18. )
  19. add_test(ResourceManager ResourceManagerTests)
  20. set_tests_properties(ResourceManager
  21. PROPERTIES
  22. LABELS "Catch"
  23. )