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

29 lines
472 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(MiscTests
arithmeticCompare.cpp
conflicts.cpp
FloatParts.cpp
2020-07-30 09:40:35 +02:00
JsonString.cpp
printable.cpp
Readers.cpp
StringAdapters.cpp
StringWriter.cpp
TypeTraits.cpp
unsigned_char.cpp
Utf16.cpp
2020-07-30 09:40:35 +02:00
Utf8.cpp
version.cpp
)
2019-12-24 16:41:00 +01:00
set_target_properties(MiscTests PROPERTIES UNITY_BUILD OFF)
add_test(Misc MiscTests)
2021-04-25 11:38:19 +02:00
set_tests_properties(Misc
PROPERTIES
LABELS "Catch"
)