2021-03-29 17:14:01 +02:00
|
|
|
# ArduinoJson - https://arduinojson.org
|
2024-01-03 08:47:06 +01:00
|
|
|
# Copyright © 2014-2024, Benoit BLANCHON
|
2018-10-02 16:54:05 +02:00
|
|
|
# MIT License
|
|
|
|
|
|
|
|
add_executable(MixedConfigurationTests
|
2019-02-15 13:29:30 +01:00
|
|
|
decode_unicode_0.cpp
|
|
|
|
decode_unicode_1.cpp
|
2020-04-08 10:16:05 +02:00
|
|
|
enable_alignment_0.cpp
|
|
|
|
enable_alignment_1.cpp
|
|
|
|
enable_comments_0.cpp
|
|
|
|
enable_comments_1.cpp
|
2019-05-19 15:48:27 +02:00
|
|
|
enable_infinity_0.cpp
|
|
|
|
enable_infinity_1.cpp
|
2019-05-26 11:31:51 +02:00
|
|
|
enable_nan_0.cpp
|
|
|
|
enable_nan_1.cpp
|
2020-04-08 10:16:05 +02:00
|
|
|
enable_progmem_1.cpp
|
2022-02-06 11:14:23 +01:00
|
|
|
issue1707.cpp
|
2024-04-18 14:19:43 +02:00
|
|
|
string_length_size_1.cpp
|
|
|
|
string_length_size_2.cpp
|
|
|
|
string_length_size_4.cpp
|
2018-10-02 16:54:05 +02:00
|
|
|
use_double_0.cpp
|
|
|
|
use_double_1.cpp
|
2023-02-09 18:57:34 +01:00
|
|
|
use_long_long_0.cpp
|
|
|
|
use_long_long_1.cpp
|
2018-10-02 16:54:05 +02:00
|
|
|
)
|
|
|
|
|
2019-12-24 16:41:00 +01:00
|
|
|
set_target_properties(MixedConfigurationTests PROPERTIES UNITY_BUILD OFF)
|
|
|
|
|
2018-10-02 16:54:05 +02:00
|
|
|
add_test(MixedConfiguration MixedConfigurationTests)
|
2021-04-25 11:38:19 +02:00
|
|
|
|
|
|
|
set_tests_properties(MixedConfiguration
|
|
|
|
PROPERTIES
|
2023-02-09 10:00:38 +01:00
|
|
|
LABELS "Catch"
|
2021-06-15 18:52:18 +02:00
|
|
|
)
|