aboutsummaryrefslogtreecommitdiff
path: root/samples/meson.build
diff options
context:
space:
mode:
authorThanos Makatos <thanos.makatos@nutanix.com>2022-11-22 15:51:10 +0000
committerGitHub <noreply@github.com>2022-11-22 15:51:10 +0000
commit6756ee83f8c86d0f844b2dec2cb034b379951e2d (patch)
treea7176ceb24815d140499189b23fbfcdccdc18227 /samples/meson.build
parent360f6a6795a94d81b036c13a08595db944c1904c (diff)
downloadlibvfio-user-6756ee83f8c86d0f844b2dec2cb034b379951e2d.zip
libvfio-user-6756ee83f8c86d0f844b2dec2cb034b379951e2d.tar.gz
libvfio-user-6756ee83f8c86d0f844b2dec2cb034b379951e2d.tar.bz2
shadow ioeventfd: add demo (#722)
Signed-off-by: Thanos Makatos <thanos.makatos@nutanix.com> Reviewed-by: John Levon <john.levon@nutanix.com>
Diffstat (limited to 'samples/meson.build')
-rw-r--r--samples/meson.build18
1 files changed, 18 insertions, 0 deletions
diff --git a/samples/meson.build b/samples/meson.build
index d1d435c..9807a77 100644
--- a/samples/meson.build
+++ b/samples/meson.build
@@ -92,3 +92,21 @@ lspci = executable(
include_directories: lib_include_dir,
install: false,
)
+
+
+shadow_ioeventfd_server_sources = [
+ 'shadow_ioeventfd_server.c',
+]
+
+shadow_ioeventfd_server_deps = [
+ libvfio_user_dep,
+]
+
+shadow_ioeventfd_server = executable(
+ 'shadow_ioeventfd_server',
+ shadow_ioeventfd_server_sources,
+ c_args: common_cflags,
+ dependencies: shadow_ioeventfd_server_deps,
+ include_directories: lib_include_dir,
+ install: false,
+)