CMakeLists.txt 346 B

1234567891011121314151617181920
  1. # ArduinoJson - arduinojson.org
  2. # Copyright Benoit Blanchon 2014-2023
  3. # MIT License
  4. add_executable(MiscTests
  5. empty.cpp
  6. deprecated.cpp
  7. FloatParts.cpp
  8. std_stream.cpp
  9. std_string.cpp
  10. StringBuilder.cpp
  11. StringTraits.cpp
  12. TypeTraits.cpp
  13. unsigned_char.cpp
  14. version.cpp
  15. vla.cpp
  16. )
  17. target_link_libraries(MiscTests catch)
  18. add_test(Misc MiscTests)