mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-23 15:27:30 +02:00
22 lines
373 B
CMake
22 lines
373 B
CMake
# ArduinoJson - arduinojson.org
|
|
# Copyright Benoit Blanchon 2014-2020
|
|
# MIT License
|
|
|
|
add_executable(MiscTests
|
|
arithmeticCompare.cpp
|
|
conflicts.cpp
|
|
FloatParts.cpp
|
|
Readers.cpp
|
|
StringAdapters.cpp
|
|
StringWriter.cpp
|
|
TypeTraits.cpp
|
|
unsigned_char.cpp
|
|
Utf8.cpp
|
|
Utf16.cpp
|
|
version.cpp
|
|
)
|
|
|
|
set_target_properties(MiscTests PROPERTIES UNITY_BUILD OFF)
|
|
|
|
add_test(Misc MiscTests)
|