forked from microsoft/vcpkg
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[gobject-introspection] Fixed pkg-config file to follow vcpkg directo…
…ry layout rule (microsoft#36279) * Fixed g-ir-scanner, g-ir-compiler, and g-ir-generator path in .pc to follow vcpkg directory layout rule * Bumped port-version * Run x-add-version --------- Co-authored-by: Takuro Iizuka <[email protected]>
- Loading branch information
1 parent
fa6e6a6
commit 2b681d9
Showing
5 changed files
with
25 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
diff --git a/meson.build b/meson.build | ||
index b253927..312fbdc 100644 | ||
--- a/meson.build | ||
+++ b/meson.build | ||
@@ -254,9 +254,9 @@ endif | ||
pkgconfig_variables = [ | ||
'datadir=' + '${prefix}' / get_option('datadir'), | ||
'bindir=' + '${prefix}' / get_option('bindir'), | ||
- 'g_ir_scanner=${bindir}/g-ir-scanner', | ||
- 'g_ir_compiler=${bindir}/g-ir-compiler@0@'.format(exe_ext), | ||
- 'g_ir_generate=${bindir}/g-ir-generate@0@'.format(exe_ext), | ||
+ 'g_ir_scanner=${prefix}/tools/gobject-introspection/g-ir-scanner', | ||
+ 'g_ir_compiler=${prefix}/tools/gobject-introspection/g-ir-compiler@0@'.format(exe_ext), | ||
+ 'g_ir_generate=${prefix}/tools/gobject-introspection/g-ir-generate@0@'.format(exe_ext), | ||
'gidatadir=${datadir}/gobject-introspection-1.0', | ||
'girdir=' + gir_dir_pc_prefix / 'gir-1.0', | ||
'typelibdir=${libdir}/girepository-1.0', |
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
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