CMakeLists.txt 259 B

12345678910111213
  1. # ArduinoJson - arduinojson.org
  2. # Copyright Benoit Blanchon 2014-2023
  3. # MIT License
  4. add_executable(PolyfillsTests
  5. isFloat.cpp
  6. isInteger.cpp
  7. parseFloat.cpp
  8. parseInteger.cpp
  9. )
  10. target_link_libraries(PolyfillsTests catch)
  11. add_test(Polyfills PolyfillsTests)