CMakeLists.txt 372 B

1234567891011121314151617181920
  1. # ArduinoJson - arduinojson.org
  2. # Copyright Benoit Blanchon 2014-2021
  3. # MIT License
  4. add_executable(IntegrationTests
  5. gbathree.cpp
  6. issue772.cpp
  7. round_trip.cpp
  8. openweathermap.cpp
  9. )
  10. if(CMAKE_CXX_COMPILER_ID MATCHES "GNU")
  11. target_compile_options(IntegrationTests
  12. PUBLIC
  13. -fsingle-precision-constant # issue 544
  14. )
  15. endif()
  16. add_test(IntegrationTests IntegrationTests)