2021-03-29 17:14:01 +02:00
|
|
|
# ArduinoJson - https://arduinojson.org
|
2023-02-16 11:45:01 +01:00
|
|
|
# Copyright © 2014-2023, Benoit BLANCHON
|
2017-04-10 15:36:59 +02:00
|
|
|
# MIT License
|
|
|
|
|
2018-05-14 17:12:59 +02:00
|
|
|
add_executable(MiscTests
|
2020-07-02 15:28:34 +02:00
|
|
|
arithmeticCompare.cpp
|
2019-03-01 18:11:27 +01:00
|
|
|
conflicts.cpp
|
2017-07-14 10:51:46 +02:00
|
|
|
FloatParts.cpp
|
2020-07-30 09:40:35 +02:00
|
|
|
JsonString.cpp
|
2021-12-26 18:19:35 +01:00
|
|
|
NoArduinoHeader.cpp
|
2021-03-27 14:35:15 +01:00
|
|
|
printable.cpp
|
2019-10-14 12:02:26 +02:00
|
|
|
Readers.cpp
|
2019-05-23 21:54:42 +02:00
|
|
|
StringAdapters.cpp
|
2018-07-12 09:08:20 +02:00
|
|
|
StringWriter.cpp
|
2017-04-10 15:36:59 +02:00
|
|
|
TypeTraits.cpp
|
|
|
|
unsigned_char.cpp
|
2020-01-27 12:10:10 +01:00
|
|
|
Utf16.cpp
|
2020-07-30 09:40:35 +02:00
|
|
|
Utf8.cpp
|
2018-06-01 09:16:45 +02:00
|
|
|
version.cpp
|
2017-04-10 15:36:59 +02:00
|
|
|
)
|
|
|
|
|
2019-12-24 16:41:00 +01:00
|
|
|
set_target_properties(MiscTests PROPERTIES UNITY_BUILD OFF)
|
|
|
|
|
2017-04-10 15:36:59 +02:00
|
|
|
add_test(Misc MiscTests)
|
2021-04-25 11:38:19 +02:00
|
|
|
|
|
|
|
set_tests_properties(Misc
|
|
|
|
PROPERTIES
|
2023-02-09 10:00:38 +01:00
|
|
|
LABELS "Catch"
|
2021-04-25 11:38:19 +02:00
|
|
|
)
|