summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2020-08-01 11:28:48 +0200
committerDave Davenport <qball@gmpclient.org>2020-08-01 11:28:48 +0200
commit77b761aca512eed5c8f76dc612584234bac64b81 (patch)
tree3409bdf22a67a1ee710edd95c06574fcc309526f
parent57ee69367d1ffe01c6e5ebb9b2fa5cb83060639f (diff)
[meson] Test possible 'workaround' for meson 0.55 issuemesonfix
Make xcb a non-nested subproject (via simlink). Issue: #1159
-rw-r--r--meson.build4
l---------subprojects/xcb1
2 files changed, 4 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index bec08967..9e893842 100644
--- a/meson.build
+++ b/meson.build
@@ -51,9 +51,11 @@ deps = [
c_compiler.find_library('m', required: false),
]
+
+gwxcb = subproject('xcb')
# XCB stuff
deps += [
- subproject('libgwater/xcb').get_variable('libgwater_xcb'),
+ gwxcb.get_variable('libgwater_xcb'),
dependency('xcb-aux'),
dependency('xcb-xkb'),
dependency('xkbcommon-x11'),
diff --git a/subprojects/xcb b/subprojects/xcb
new file mode 120000
index 00000000..b916db37
--- /dev/null
+++ b/subprojects/xcb
@@ -0,0 +1 @@
+libgwater/xcb \ No newline at end of file