CMakeLists.txt 327 B

12345678910111213141516171819
  1. # ArduinoJson - https://arduinojson.org
  2. # Copyright © 2014-2025, Benoit BLANCHON
  3. # MIT License
  4. add_executable(NumbersTests
  5. convertNumber.cpp
  6. decomposeFloat.cpp
  7. parseDouble.cpp
  8. parseFloat.cpp
  9. parseInteger.cpp
  10. parseNumber.cpp
  11. )
  12. add_test(Numbers NumbersTests)
  13. set_tests_properties(Numbers
  14. PROPERTIES
  15. LABELS "Catch"
  16. )