CMakeLists.txt 338 B

123456789101112131415
  1. # ArduinoJson - arduinojson.org
  2. # Copyright Benoit Blanchon 2014-2019
  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. target_link_libraries(MsgPackSerializerTests catch)
  13. add_test(MsgPackSerializer MsgPackSerializerTests)