X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=meson.build;h=48db082bf159f1c77b3f4cd306149b548b30fe68;hb=9c9373f4755e394ddbb3610dc86d92277b28b740;hp=e1ba3c13173f6df92cfee74a7a70cd8ed108d7cc;hpb=b352cee6f8113e63864ac644502ace3bd75bfae1;p=src%2Fagl-compositor.git diff --git a/meson.build b/meson.build index e1ba3c1..48db082 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('agl-compositor', 'c', - version: '0.0.13', + version: '0.0.15', default_options: [ 'warning_level=3', 'c_std=gnu99', @@ -10,7 +10,7 @@ project('agl-compositor', ) config_h = configuration_data() -agl_compositor_version = '0.0.13' +agl_compositor_version = '0.0.15' pkgconfig = import('pkgconfig') cc = meson.get_compiler('c') @@ -46,10 +46,12 @@ dep_wp = dependency('wayland-protocols', version: '>= 1.18') dir_wp_base = dep_wp.get_pkgconfig_variable('pkgdatadir') agl_shell_xml = files('protocol/agl-shell.xml') +agl_shell_desktop_xml = files('protocol/agl-shell-desktop.xml') xdg_shell_xml = join_paths(dir_wp_base, 'stable', 'xdg-shell', 'xdg-shell.xml') protocols = [ { 'name': 'agl-shell', 'source': 'internal' }, + { 'name': 'agl-shell-desktop', 'source': 'internal' }, { 'name': 'xdg-shell', 'source': 'wp-stable' }, ] @@ -122,7 +124,9 @@ srcs_agl_compositor = [ 'shared/option-parser.c', 'shared/os-compatibility.c', agl_shell_server_protocol_h, + agl_shell_desktop_server_protocol_h, agl_shell_protocol_c, + agl_shell_desktop_protocol_c, xdg_shell_protocol_c, ] @@ -174,6 +178,6 @@ pkgconfig.generate( ) install_data( - [ agl_shell_xml ], + [ agl_shell_xml, agl_shell_desktop_xml ], install_dir: join_paths(dir_data, dir_data_agl_compositor) )