diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 15:07:22 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 15:07:22 +0000 |
commit | f9d480cfe50ca1d7a0f0b5a2b8bb9932962bfbe7 (patch) | |
tree | ce9e8db2d4e8799780fa72ae8f1953039373e2ee /subprojects/shew/src/meson.build | |
parent | Initial commit. (diff) | |
download | gnome-shell-f9d480cfe50ca1d7a0f0b5a2b8bb9932962bfbe7.tar.xz gnome-shell-f9d480cfe50ca1d7a0f0b5a2b8bb9932962bfbe7.zip |
Adding upstream version 3.38.6.upstream/3.38.6upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'subprojects/shew/src/meson.build')
-rw-r--r-- | subprojects/shew/src/meson.build | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/subprojects/shew/src/meson.build b/subprojects/shew/src/meson.build new file mode 100644 index 0000000..c3b1a6b --- /dev/null +++ b/subprojects/shew/src/meson.build @@ -0,0 +1,29 @@ +shew_public_headers = files( + 'shew-external-window.h', + 'shew-window-exporter.h', +) + +shew_sources = [ + 'shew-external-window-wayland.c', + 'shew-external-window-x11.c', + 'shew-external-window.c', + 'shew-window-exporter.c', +] + +libshew = library(full_name, + sources: shew_sources, + dependencies: [gtk_dep], + install_dir: pkglibdir, + install: true, +) + +libshew_gir = gnome.generate_gir(libshew, + sources: shew_sources + shew_public_headers, + nsversion: api_version, + namespace: 'Shew', + includes: ['Gdk-3.0', 'Gtk-3.0'], + extra_args: ['--quiet'], + install_dir_gir: girdir, + install_dir_typelib: typelibdir, + install: true, +) |