summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--subprojects/libvhost-user/meson.build4
1 files changed, 3 insertions, 1 deletions
diff --git a/subprojects/libvhost-user/meson.build b/subprojects/libvhost-user/meson.build
index 39825d9404..a0df9c0f58 100644
--- a/subprojects/libvhost-user/meson.build
+++ b/subprojects/libvhost-user/meson.build
@@ -8,6 +8,7 @@ glib = dependency('glib-2.0')
vhost_user = static_library('vhost-user',
files('libvhost-user.c'),
dependencies: threads,
+ install: true,
c_args: '-D_GNU_SOURCE')
executable('link-test', files('link-test.c'),
@@ -16,7 +17,8 @@ executable('link-test', files('link-test.c'),
vhost_user_glib = static_library('vhost-user-glib',
files('libvhost-user-glib.c'),
link_with: vhost_user,
- dependencies: glib)
+ dependencies: glib,
+ install: true)
vhost_user_dep = declare_dependency(link_with: vhost_user_glib,
dependencies: glib,