
* New hooks (generic, edge, block) * data in hooks * data in exec hooks * faster generic hooks * new rw and cmp hooks * pc in generic hooks * test * assert * test * test * test * test * test * test * test * test * test * test * split block hook code * fix * invalidate * invalidate flag * Fix as shared for full system
29 lines
1.1 KiB
Meson
29 lines
1.1 KiB
Meson
project('libvhost-user', 'c',
|
|
license: 'GPL-2.0-or-later',
|
|
default_options: ['c_std=gnu99'])
|
|
|
|
keyval = import('keyval')
|
|
config_host = keyval.load(meson.global_build_root() / 'config-host.mak')
|
|
|
|
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',
|
|
pic: 'AS_SHARED_LIB' in config_host)
|
|
|
|
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,
|
|
pic: 'AS_SHARED_LIB' in config_host)
|
|
|
|
vhost_user_dep = declare_dependency(link_with: vhost_user_glib,
|
|
dependencies: glib,
|
|
include_directories: include_directories('.'))
|