2018-04-10 17:43:27 +02:00
|
|
|
# ArduinoJson - arduinojson.org
|
|
|
|
# Copyright Benoit Blanchon 2014-2018
|
|
|
|
# MIT License
|
|
|
|
|
|
|
|
add_executable(MsgPackTests
|
|
|
|
deserializeArray.cpp
|
|
|
|
deserializeObject.cpp
|
|
|
|
deserializeStaticVariant.cpp
|
2018-05-14 17:12:59 +02:00
|
|
|
deserializeVariant.cpp
|
2018-04-10 17:43:27 +02:00
|
|
|
doubleToFloat.cpp
|
2018-05-14 17:12:59 +02:00
|
|
|
incompleteInput.cpp
|
|
|
|
nestingLimit.cpp
|
|
|
|
notSupported.cpp
|
|
|
|
std_string.cpp
|
|
|
|
std_istream.cpp
|
2018-04-10 17:43:27 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
target_link_libraries(MsgPackTests catch)
|
|
|
|
add_test(MsgPack MsgPackTests)
|