CMakeLists.txt 438 B

12345678910111213141516171819202122
  1. # ArduinoJson - https://arduinojson.org
  2. # Copyright © 2014-2025, Benoit BLANCHON
  3. # MIT License
  4. add_executable(MsgPackDeserializerTests
  5. deserializeArray.cpp
  6. deserializeObject.cpp
  7. deserializeVariant.cpp
  8. destination_types.cpp
  9. doubleToFloat.cpp
  10. errors.cpp
  11. filter.cpp
  12. input_types.cpp
  13. nestingLimit.cpp
  14. )
  15. add_test(MsgPackDeserializer MsgPackDeserializerTests)
  16. set_tests_properties(MsgPackDeserializer
  17. PROPERTIES
  18. LABELS "Catch"
  19. )