Files
ArduinoJson/extras/tests/TextFormatter/CMakeLists.txt

14 lines
317 B
CMake
Raw Normal View History

# ArduinoJson - arduinojson.org
2020-01-09 15:48:38 +01:00
# Copyright Benoit Blanchon 2014-2020
# MIT License
add_executable(TextFormatterTests
writeFloat.cpp
writeString.cpp
)
target_link_libraries(TextFormatterTests catch)
2019-12-24 16:41:00 +01:00
set_target_properties(TextFormatterTests PROPERTIES UNITY_BUILD OFF)
add_test(TextFormatter TextFormatterTests)