summaryrefslogtreecommitdiff
path: root/gsk
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2023-05-02 08:41:43 +0200
committerBenjamin Otte <otte@redhat.com>2023-05-02 08:41:43 +0200
commit7ce2eeac47b6c36572b5e6236ca0c5da87124155 (patch)
treedcd18ec1d9f0925db672fb9898a807e09080d22e /gsk
parent64f9d825064644908e9b316c7d53fd9a3ca30285 (diff)
downloadgtk+-7ce2eeac47b6c36572b5e6236ca0c5da87124155.tar.gz
build: Use generated SPIR-V files
We weren't looking in the build dir for generated files. Actually make sure that we look in the build dir *first*, otherwise glib-compile-resources will still use the wrong files.
Diffstat (limited to 'gsk')
-rw-r--r--gsk/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/gsk/meson.build b/gsk/meson.build
index bd50524785..5b4f2389e9 100644
--- a/gsk/meson.build
+++ b/gsk/meson.build
@@ -164,7 +164,7 @@ gskenum_h = gsk_enums[1]
gskresources = gnome.compile_resources('gskresources',
gsk_resources_xml,
dependencies: gsk_private_vulkan_compiled_shaders_deps,
- source_dir: meson.current_source_dir(),
+ source_dir: [meson.current_build_dir(), meson.current_source_dir()],
c_name: '_gsk',
extra_args: [ '--manual-register', ],
)