CMakeLists.txt 497 B

1234567891011121314151617181920212223242526272829
  1. # ArduinoJson - https://arduinojson.org
  2. # Copyright © 2014-2022, Benoit BLANCHON
  3. # MIT License
  4. add_executable(MiscTests
  5. arithmeticCompare.cpp
  6. conflicts.cpp
  7. FloatParts.cpp
  8. JsonString.cpp
  9. NoArduinoHeader.cpp
  10. printable.cpp
  11. Readers.cpp
  12. StringAdapters.cpp
  13. StringWriter.cpp
  14. TypeTraits.cpp
  15. unsigned_char.cpp
  16. Utf16.cpp
  17. Utf8.cpp
  18. version.cpp
  19. )
  20. set_target_properties(MiscTests PROPERTIES UNITY_BUILD OFF)
  21. add_test(Misc MiscTests)
  22. set_tests_properties(Misc
  23. PROPERTIES
  24. LABELS "Catch"
  25. )