diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:54:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:54:43 +0000 |
commit | e4283f6d48b98e764b988b43bbc86b9d52e6ec94 (patch) | |
tree | c8f7f7a6c2f5faa2942d27cefc6fd46cca492656 /js/meson.build | |
parent | Initial commit. (diff) | |
download | gnome-shell-upstream/43.9.tar.xz gnome-shell-upstream/43.9.zip |
Adding upstream version 43.9.upstream/43.9upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'js/meson.build')
-rw-r--r-- | js/meson.build | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/js/meson.build b/js/meson.build new file mode 100644 index 0000000..4809f82 --- /dev/null +++ b/js/meson.build @@ -0,0 +1,16 @@ +subdir('misc') +subdir('dbusServices') + +js_resources = gnome.compile_resources( + 'js-resources', 'js-resources.gresource.xml', + source_dir: ['.', meson.current_build_dir()], + c_name: 'shell_js_resources', + dependencies: [config_js] +) + +portal_resources = gnome.compile_resources( + 'portal-resources', 'portal-resources.gresource.xml', + source_dir: ['.', meson.current_build_dir()], + c_name: 'portal_js_resources', + dependencies: [config_js] +) |