X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=meson.build;h=cab7574780dbdabaca47eee11200337e007c0aa4;hb=refs%2Fchanges%2F77%2F28377%2F2;hp=5f6c29da447011ecfeca9e7355711fa1279a42aa;hpb=a02c5606aa6621c9d3e0cc968180e7993201e2da;p=src%2Fagl-compositor.git diff --git a/meson.build b/meson.build index 5f6c29d..cab7574 100644 --- a/meson.build +++ b/meson.build @@ -1,11 +1,12 @@ project('agl-compositor', 'c','cpp', - version: '0.0.20', + version: '0.0.21', 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, @@ -257,7 +257,7 @@ libexec_compositor = shared_library( dependencies: deps_libweston, install_dir: dir_module_agl_compositor, install: true, - version: '0.0.0', + version: meson.project_version(), soversion: 0 ) @@ -296,3 +296,7 @@ install_data( common_inc = [ include_directories('src'), include_directories('.') ] subdir('clients') + +if get_option('grpc-proxy') + subdir('grpc-proxy') +endif