diff options
author | Ivan Solovev <ivan.solovev@qt.io> | 2021-10-21 17:27:08 +0200 |
---|---|---|
committer | Ivan Solovev <ivan.solovev@qt.io> | 2021-11-02 09:46:33 +0200 |
commit | 6db775f6d9d72cf8ee9d66333b8424e74be1e352 (patch) | |
tree | 0a293756b61619a91970d9368a0449b7bf922728 /cmake/FindGconf.cmake | |
parent | 5a1f44c3d41febca8480c077bd4c34e5a3332cdc (diff) | |
download | qtlocation-6.2.2.tar.gz |
Turns out that our CI does not support repos without
any tests. This is treated like an error and leads to
integration failure.
This patch fixes it by disabling tests in
coin/module_config.yaml. This config should be fixed
when QtLocation tests are enabled
Task-number: QTBUG-97084
Change-Id: Ib06e865fe2836806bbbee34345f06b471dd48660
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Reviewed-by: Alex Blasche <alexander.blasche@qt.io>
(cherry picked from commit 23f32792ad53e23bbafbff6d7667f0bb0f69fc53)
Diffstat (limited to 'cmake/FindGconf.cmake')
-rw-r--r-- | cmake/FindGconf.cmake | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/cmake/FindGconf.cmake b/cmake/FindGconf.cmake deleted file mode 100644 index d2db910a..00000000 --- a/cmake/FindGconf.cmake +++ /dev/null @@ -1,14 +0,0 @@ -find_package(PkgConfig QUIET) -if (PkgConfig_FOUND) - pkg_check_modules(Gconf gconf-2.0 IMPORTED_TARGET) - - if (TARGET PkgConfig::Gconf) - mark_as_advanced(Gconf_LIBRARIES Gconf_INCLUDE_DIRS) - if (NOT TARGET Gconf::Gconf) - add_library(Gconf::Gconf INTERFACE IMPORTED) - target_link_libraries(Gconf::Gconf INTERFACE PkgConfig::Gconf) - endif() - else() - set(Gconf_FOUND 0) - endif() -endif() |