summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjellahlstedt@gmail.com>2021-03-16 09:52:13 +0100
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2021-03-16 11:47:28 +0100
commit50beae7541d2f13240f7ac39bed5997fbb6eee12 (patch)
tree7ab72b179d8567864dc76b88c628a6d53faa5ffc
parent0f6b91109ea7492ea82ffc1276b065b5eb6de6fe (diff)
downloadgtk+-50beae7541d2f13240f7ac39bed5997fbb6eee12.tar.gz
meson: Find libcairo-script-interpreter when cairo is a subproject
If cairo is a subproject, it's not necessarily installed when gtk is built. In the build tree, libcairo-script-interpreter is not stored in the same directory as other cairo libraries.
-rw-r--r--gsk/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/gsk/meson.build b/gsk/meson.build
index 8e2b0f1782..24b6be14da 100644
--- a/gsk/meson.build
+++ b/gsk/meson.build
@@ -230,5 +230,5 @@ libgsk = static_library('gsk',
# "public" libgtk_dep used by internal executables.
libgsk_dep = declare_dependency(include_directories: [ confinc, ],
sources: [ gskenum_h, ],
- dependencies: libgdk_dep,
+ dependencies: [libgdk_dep, cairo_csi_dep],
)