-
Notifications
You must be signed in to change notification settings - Fork 172
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix depends Qt path resolution for auxillary modules
This adds a top-level project to the Qt depends recipe that enables the build system to generate the correct pkgconfig paths for all of the platform targets. Gridcoin uses the Charts and SVG modules in additon to the basic Qt UI components needed upstream by Bitcoin. Some platform tool chains ignored the invalid pkgconfig paths generated for these modules. To fix the static Qt builds for every target, we need to address those issues because the previous work-around for one broke another.
- Loading branch information
1 parent
14698a8
commit 6f090a0
Showing
2 changed files
with
37 additions
and
2 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,33 @@ | ||
# | ||
# This project file enable the Qt depends recipe to build additional modules | ||
# with proper dependency and path resolution. | ||
# | ||
# https://wiki.qt.io/SUBDIRS_-_handling_dependencies | ||
# | ||
|
||
cache(, super) | ||
|
||
TEMPLATE = subdirs | ||
|
||
SUBDIRS = \ | ||
qtbase \ | ||
qtcharts \ | ||
qtsvg \ | ||
qttools \ | ||
qttranslations | ||
|
||
qtbase.target = module-qtbase | ||
|
||
qtcharts.target = module-qtcharts | ||
qtcharts.depends = qtbase | ||
|
||
qtsvg.target = module-qtsvg | ||
qtsvg.depends = qtbase | ||
|
||
qttools.target = module-qttools | ||
qttools.depends = qtbase | ||
|
||
qttranslations.target = module-qttranslations | ||
qttranslations.depends = qttools | ||
|
||
load(qt_configure) |