spice-gtk/vapi/meson.build
Frediano Ziglio ecd4a776b3 build: Replace "join_paths" with "/" operator
Supported by Meson 0.49 (required by Spice-GTK).
New syntax is shorter and is recommended in
https://mesonbuild.com/Release-notes-for-0-49-0.html
("Joining paths with /").

Signed-off-by: Frediano Ziglio <fziglio@redhat.com>
Acked-by: Uri Lublin <uril@redhat.com>
2019-08-21 12:08:12 +01:00

16 lines
640 B
Meson

if spice_gtk_has_vala
spice_glib_vapi = gnome.generate_vapi('spice-client-glib-2.0',
install : true,
packages : ['gio-2.0', 'gstreamer-1.0'],
sources : spice_client_glib_gir[0])
if spice_gtk_has_gtk
gnome.generate_vapi('spice-client-gtk-3.0',
install : true,
packages : ['gtk+-3.0', 'gstreamer-1.0', spice_glib_vapi],
gir_dirs : meson.build_root() / 'src',
vapi_dirs : meson.current_build_dir(),
sources : spice_client_gtk_gir[0])
endif
endif