X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=meson.build;h=26f70fde140c78f095e8ac6c8c1bfec9e4da0c11;hb=refs%2Fchanges%2F85%2F28385%2F1;hp=5f6c29da447011ecfeca9e7355711fa1279a42aa;hpb=a02c5606aa6621c9d3e0cc968180e7993201e2da;p=src%2Fagl-compositor.git diff --git a/meson.build b/meson.build index 5f6c29d..26f70fd 100644 --- a/meson.build +++ b/meson.build @@ -4,8 +4,9 @@ project('agl-compositor', default_options: [ 'warning_level=3', 'c_std=gnu99', + 'werror=true', ], - meson_version: '>= 0.47', + meson_version: '>= 0.53', license: 'MIT/Expat', ) @@ -21,8 +22,6 @@ add_project_arguments( cc.get_supported_arguments([ '-Wno-unused-parameter', '-Wno-pedantic', - '-Wextra', - '-Werror' ]), language: 'c' ) @@ -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