X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=meson.build;h=26f70fde140c78f095e8ac6c8c1bfec9e4da0c11;hb=refs%2Fheads%2Fsandbox%2Fmvlad%2Ffix-shell-v1;hp=218779df1876aae0e777bdc21a1a3cffc27af4af;hpb=9cc8100eef72bf1235c3b87430e4c2f6d396f128;p=src%2Fagl-compositor.git diff --git a/meson.build b/meson.build index 218779d..26f70fd 100644 --- a/meson.build +++ b/meson.build @@ -4,13 +4,14 @@ project('agl-compositor', default_options: [ 'warning_level=3', 'c_std=gnu99', + 'werror=true', ], - meson_version: '>= 0.47', + meson_version: '>= 0.53', license: 'MIT/Expat', ) config_h = configuration_data() -libweston_version = 'libweston-8' +libweston_version = 'libweston-10' pkgconfig = import('pkgconfig') fs = import('fs') @@ -21,8 +22,6 @@ add_project_arguments( cc.get_supported_arguments([ '-Wno-unused-parameter', '-Wno-pedantic', - '-Wextra', - '-Werror' ]), language: 'c' ) @@ -157,7 +156,7 @@ libweston_dep = dependency(libweston_version) deps_libweston = [ dependency('wayland-server'), libweston_dep, - dependency('libweston-desktop-8'), + dependency('libweston-desktop-10'), local_dep, ] @@ -172,6 +171,7 @@ srcs_agl_compositor = [ 'src/input.c', 'shared/option-parser.c', 'shared/os-compatibility.c', + 'shared/process-util.c', agl_shell_server_protocol_h, agl_shell_desktop_server_protocol_h, agl_screenshooter_server_protocol_h, @@ -296,3 +296,7 @@ install_data( common_inc = [ include_directories('src'), include_directories('.') ] subdir('clients') + +if get_option('grpc-proxy') + subdir('grpc-proxy') +endif