15 lines
259 B
CMake
15 lines
259 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
|
||
|
)
|
||
|
|
||
|
target_link_libraries(MiscTests catch)
|
||
|
add_test(Misc MiscTests)
|