722b62d97d
In case libvhost-user is used externally, that projects compiler warnings might be more strict. Enforce an extra set of compiler warnings to catch issues early on. Signed-off-by: Marcel Holtmann <marcel@holtmann.org> Suggested-by: Paolo Bonzini <pbonzini@redhat.com> Message-Id: <737ebf2e697f8640558e6f73d96a692711f548f6.1671741278.git.marcel@holtmann.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
30 lines
1.2 KiB
Meson
30 lines
1.2 KiB
Meson
project('libvhost-user', 'c',
|
|
license: 'GPL-2.0-or-later',
|
|
default_options: ['warning_level=1', 'c_std=gnu99'])
|
|
|
|
cc = meson.get_compiler('c')
|
|
add_project_arguments(cc.get_supported_arguments('-Wsign-compare',
|
|
'-Wdeclaration-after-statement',
|
|
'-Wstrict-aliasing'),
|
|
native: false, language: 'c')
|
|
|
|
threads = dependency('threads')
|
|
glib = dependency('glib-2.0')
|
|
|
|
vhost_user = static_library('vhost-user',
|
|
files('libvhost-user.c'),
|
|
dependencies: threads,
|
|
c_args: '-D_GNU_SOURCE')
|
|
|
|
executable('link-test', files('link-test.c'),
|
|
link_whole: vhost_user)
|
|
|
|
vhost_user_glib = static_library('vhost-user-glib',
|
|
files('libvhost-user-glib.c'),
|
|
link_with: vhost_user,
|
|
dependencies: glib)
|
|
|
|
vhost_user_dep = declare_dependency(link_with: vhost_user_glib,
|
|
dependencies: glib,
|
|
include_directories: include_directories('.'))
|