CMakeLists.txt 368 B

123456789101112131415161718
  1. # ArduinoJson - https://arduinojson.org
  2. # Copyright © 2014-2022, Benoit BLANCHON
  3. # MIT License
  4. add_executable(TextFormatterTests
  5. writeFloat.cpp
  6. writeInteger.cpp
  7. writeString.cpp
  8. )
  9. set_target_properties(TextFormatterTests PROPERTIES UNITY_BUILD OFF)
  10. add_test(TextFormatter TextFormatterTests)
  11. set_tests_properties(TextFormatter
  12. PROPERTIES
  13. LABELS "Catch"
  14. )