CMakeLists.txt 247 B

1234567891011
  1. # ArduinoJson - arduinojson.org
  2. # Copyright Benoit Blanchon 2014-2019
  3. # MIT License
  4. add_executable(TextFormatterTests
  5. writeFloat.cpp
  6. writeString.cpp
  7. )
  8. target_link_libraries(TextFormatterTests catch)
  9. add_test(TextFormatter TextFormatterTests)