forked from bblanchon/ArduinoJson
18 lines
307 B
CMake
18 lines
307 B
CMake
# ArduinoJson - arduinojson.org
|
|
# Copyright Benoit Blanchon 2014-2018
|
|
# MIT License
|
|
|
|
add_executable(MiscTests
|
|
FloatParts.cpp
|
|
std_stream.cpp
|
|
std_string.cpp
|
|
StringBuilder.cpp
|
|
StringTraits.cpp
|
|
TypeTraits.cpp
|
|
unsigned_char.cpp
|
|
vla.cpp
|
|
)
|
|
|
|
target_link_libraries(MiscTests catch)
|
|
add_test(Misc MiscTests)
|