CMakeLists.txt 484 B

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