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

18 lines
363 B
CMake
Raw Normal View History

# ArduinoJson - https://arduinojson.org
2021-01-25 09:14:15 +01:00
# Copyright Benoit Blanchon 2014-2021
# MIT License
add_executable(TextFormatterTests
writeFloat.cpp
writeInteger.cpp
writeString.cpp
)
2019-12-24 16:41:00 +01:00
set_target_properties(TextFormatterTests PROPERTIES UNITY_BUILD OFF)
add_test(TextFormatter TextFormatterTests)
2021-04-25 11:38:19 +02:00
set_tests_properties(TextFormatter
PROPERTIES
LABELS "Catch"
)