-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[kf5crash] fix cmake.in to allow consumption by static builds (#19179)
* [kf5crash] fix cmake.in to allow consumption by static builds * [kf5crash] update versions * [kf5crash] kcrash is supported on Win and macOS, too * [kf5crash] update versions * [kf5crash] replace deprecated functions * [kf5crash] update versions * [kf5crash] don't overzealously delete folders * [kf5crash] update versions * [kf5crash] proactively disable docs * [kf5crash] use semVer * [kf5crash] update versions * [kf5crash] remove extraneous options * [kf5crash] update versions * [kf5crash] wrap paths in quotes * [kf5crash] update versions * [kf5crash] remove bin folders in static build * [kf5crash] update versions * [kf5crash] rename patch file * [kf5crash] update versions * [kf5crash] add PACKAGE_NAME to vcpkg_cmake_config_fixup * [kf5crash] update versions
- Loading branch information
Showing
5 changed files
with
61 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
From dc45a01fec854b5e2a49196e82e1a336ab642764 Mon Sep 17 00:00:00 2001 | ||
From: =?UTF-8?q?Dawid=20Wro=CC=81bel?= <me@dawidwrobel.com> | ||
Date: Wed, 28 Jul 2021 03:04:39 +0200 | ||
Subject: [PATCH] Support static builds | ||
|
||
--- | ||
KF5CrashConfig.cmake.in | 8 ++++++++ | ||
1 file changed, 8 insertions(+) | ||
|
||
diff --git a/KF5CrashConfig.cmake.in b/KF5CrashConfig.cmake.in | ||
index 0222495..494c810 100644 | ||
--- a/KF5CrashConfig.cmake.in | ||
+++ b/KF5CrashConfig.cmake.in | ||
@@ -5,6 +5,14 @@ | ||
include(CMakeFindDependencyMacro) | ||
find_dependency(Qt5Core @REQUIRED_QT_VERSION@) | ||
|
||
+if (NOT @BUILD_SHARED_LIBS@) | ||
+ find_dependency(KF5CoreAddons REQUIRED) | ||
+ find_dependency(KF5WindowSystem REQUIRED) | ||
+ | ||
+ if (@X11_FOUND@) | ||
+ find_dependency(Qt5X11Extras REQUIRED) | ||
+ endif() | ||
+endif() | ||
|
||
include("${CMAKE_CURRENT_LIST_DIR}/KF5CrashTargets.cmake") | ||
@PACKAGE_INCLUDE_QCHTARGETS@ | ||
-- | ||
GitLab | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,24 @@ | ||
{ | ||
"name": "kf5crash", | ||
"version": "5.84.0", | ||
"version-semver": "5.84.0", | ||
"port-version": 1, | ||
"description": "KCrash provides support for intercepting and handling application crashes.", | ||
"homepage": "https://api.kde.org/frameworks/kcrash/html/index.html", | ||
"supports": "linux", | ||
"dependencies": [ | ||
"ecm", | ||
"kf5coreaddons", | ||
"kf5windowsystem", | ||
{ | ||
"name": "qt5-x11extras", | ||
"platform": "linux" | ||
}, | ||
{ | ||
"name": "vcpkg-cmake", | ||
"host": true | ||
}, | ||
{ | ||
"name": "vcpkg-cmake-config", | ||
"host": true | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters