CMakeLists.txt 371 B

12345678910111213141516171819
  1. # ArduinoJson - https://arduinojson.org
  2. # Copyright © 2014-2022, Benoit BLANCHON
  3. # MIT License
  4. add_executable(MsgPackSerializerTests
  5. destination_types.cpp
  6. measure.cpp
  7. misc.cpp
  8. serializeArray.cpp
  9. serializeObject.cpp
  10. serializeVariant.cpp
  11. )
  12. add_test(MsgPackSerializer MsgPackSerializerTests)
  13. set_tests_properties(MsgPackSerializer
  14. PROPERTIES
  15. LABELS "Catch"
  16. )