16 lines
268 B
CMake
16 lines
268 B
CMake
# ArduinoJson - arduinojson.org
|
|
# Copyright Benoit Blanchon 2014-2018
|
|
# MIT License
|
|
|
|
add_executable(MiscTests
|
|
FloatParts.cpp
|
|
StringWriter.cpp
|
|
TypeTraits.cpp
|
|
unsigned_char.cpp
|
|
version.cpp
|
|
vla.cpp
|
|
)
|
|
|
|
target_link_libraries(MiscTests catch)
|
|
add_test(Misc MiscTests)
|