aboutsummaryrefslogtreecommitdiffstats
path: root/example/meson.build
diff options
context:
space:
mode:
authorBernd Schubert <bschubert@ddn.com>2024-12-12 16:08:50 +0100
committerBernd Schubert <bernd.schubert@fastmail.fm>2024-12-13 11:32:03 +0100
commita3a14ffb499712f36bbb24ba7684c8bd3ba337ca (patch)
treed4660c7bd139d7fe73023d0c8f3922fbfc104496 /example/meson.build
parent4ec109d1c447bbf5be05854e32d8683bb1df5a80 (diff)
downloadlibfuse-a3a14ffb499712f36bbb24ba7684c8bd3ba337ca.tar.gz
examples: Add memfs_ll.cc
This is an initial implementation and quickly hacked together within a few hours - issues expected. This also increase to C++17 as memfs_ll makes use of more recent features. Background to create this was actually to be able to test large file names (3 * 1024B), which couldn't be achieved with passthrough file system as non of the underlying file systems seems to support that. Signed-off-by: Bernd Schubert <bschubert@ddn.com>
Diffstat (limited to 'example/meson.build')
-rw-r--r--example/meson.build3
1 files changed, 3 insertions, 0 deletions
diff --git a/example/meson.build b/example/meson.build
index 300d0c7..5c02cc1 100644
--- a/example/meson.build
+++ b/example/meson.build
@@ -35,6 +35,9 @@ if not platform.endswith('bsd') and platform != 'dragonfly' and add_languages('c
executable('passthrough_hp', 'passthrough_hp.cc',
dependencies: [ thread_dep, libfuse_dep ],
install: false)
+ executable('memfs_ll', 'memfs_ll.cc',
+ dependencies: [ thread_dep, libfuse_dep ],
+ install: false)
endif
# TODO: Link passthrough_fh with ulockmgr if available