CMakeLists.txt 515 B

1234567891011121314151617181920212223242526
  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. saveString.cpp
  8. shrinkToFit.cpp
  9. size.cpp
  10. StringBuffer.cpp
  11. StringBuilder.cpp
  12. swap.cpp
  13. )
  14. add_compile_definitions(ResourceManagerTests
  15. ARDUINOJSON_SLOT_ID_SIZE=1 # require less RAM for overflow tests
  16. ARDUINOJSON_POOL_CAPACITY=16
  17. )
  18. add_test(ResourceManager ResourceManagerTests)
  19. set_tests_properties(ResourceManager
  20. PROPERTIES
  21. LABELS "Catch"
  22. )