aboutsummaryrefslogtreecommitdiffstats
path: root/lib/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'lib/meson.build')
-rw-r--r--lib/meson.build8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/meson.build b/lib/meson.build
index 6a52d06..fcd9574 100644
--- a/lib/meson.build
+++ b/lib/meson.build
@@ -19,6 +19,14 @@ if private_cfg.get('HAVE_ICONV')
endif
endif
+if private_cfg.get('HAVE_URING', false)
+ libfuse_sources += [ 'fuse_uring.c' ]
+ deps += [ dependency('liburing') ]
+ deps += [ dependency('numa') ]
+endif
+
+
+
libdl = cc.find_library('dl', required: false)
if libdl.found()
deps += [ libdl ]