2021-03-29 17:14:01 +02:00
|
|
|
# ArduinoJson - https://arduinojson.org
|
2021-01-25 09:14:15 +01:00
|
|
|
# Copyright Benoit Blanchon 2014-2021
|
2017-04-10 15:36:59 +02:00
|
|
|
# MIT License
|
|
|
|
|
2018-04-17 21:27:45 +02:00
|
|
|
add_executable(IntegrationTests
|
2017-04-10 15:36:59 +02:00
|
|
|
gbathree.cpp
|
2018-07-04 11:57:30 +02:00
|
|
|
issue772.cpp
|
2017-04-18 18:22:24 +02:00
|
|
|
round_trip.cpp
|
2020-02-11 21:56:50 +01:00
|
|
|
openweathermap.cpp
|
2017-04-10 15:36:59 +02:00
|
|
|
)
|
|
|
|
|
2017-07-09 15:24:58 +02:00
|
|
|
if(CMAKE_CXX_COMPILER_ID MATCHES "GNU")
|
|
|
|
target_compile_options(IntegrationTests
|
|
|
|
PUBLIC
|
|
|
|
-fsingle-precision-constant # issue 544
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2017-04-10 15:36:59 +02:00
|
|
|
add_test(IntegrationTests IntegrationTests)
|
2021-04-25 11:38:19 +02:00
|
|
|
|
|
|
|
set_tests_properties(IntegrationTests
|
|
|
|
PROPERTIES
|
|
|
|
LABELS "Catch"
|
2021-06-26 11:28:59 +02:00
|
|
|
)
|