CMakeLists.txt 307 B

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