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

14 lines
317 B
CMake
Raw Normal View History

# ArduinoJson - arduinojson.org
2019-02-15 13:31:46 +01:00
# Copyright Benoit Blanchon 2014-2019
# 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)