CMakeLists.txt 317 B

12345678910111213
  1. # ArduinoJson - arduinojson.org
  2. # Copyright Benoit Blanchon 2014-2020
  3. # MIT License
  4. add_executable(TextFormatterTests
  5. writeFloat.cpp
  6. writeString.cpp
  7. )
  8. target_link_libraries(TextFormatterTests catch)
  9. set_target_properties(TextFormatterTests PROPERTIES UNITY_BUILD OFF)
  10. add_test(TextFormatter TextFormatterTests)