mirror of
https://github.com/libfuse/libfuse.git
synced 2026-07-07 14:47:41 +08:00
7e950ba1d6
Merge upstream origin/master into bsbernd/fuse-service-container. Signed-off-by: "Darrick J. Wong" <djwong@kernel.org>
72 lines
2.3 KiB
Meson
72 lines
2.3 KiB
Meson
examples = [ 'passthrough', 'passthrough_fh',
|
|
'hello', 'hello_ll',
|
|
'printcap', 'ioctl_client', 'ioctl_ll_client', 'poll_client',
|
|
'ioctl', 'ioctl_ll', 'cuse', 'cuse_client' ]
|
|
|
|
if not platform.endswith('bsd') and platform != 'dragonfly'
|
|
examples += [ 'passthrough_ll', 'hello_ll_uds' ]
|
|
|
|
# According to Conrad Meyer <cem@freebsd.org>, FreeBSD doesn't
|
|
# support mounting files, This is enforced in vfs_domount_first()
|
|
# with the v_type != VDIR check.
|
|
examples += [ 'null' ]
|
|
|
|
if platform.endswith('linux')
|
|
configure_file(input: 'null.socket.in',
|
|
output: 'null.socket',
|
|
configuration: private_cfg)
|
|
endif
|
|
endif
|
|
|
|
single_file_examples = [ ]
|
|
|
|
if platform.endswith('linux')
|
|
single_file_examples += [ 'service_ll' ]
|
|
configure_file(input: 'service_ll.socket.in',
|
|
output: 'service_ll.socket',
|
|
configuration: private_cfg)
|
|
|
|
single_file_examples += [ 'service_hl' ]
|
|
configure_file(input: 'service_hl.socket.in',
|
|
output: 'service_hl.socket',
|
|
configuration: private_cfg)
|
|
|
|
endif
|
|
|
|
threaded_examples = [ 'notify_inval_inode',
|
|
'invalidate_path',
|
|
'notify_store_retrieve',
|
|
'notify_inval_entry',
|
|
'poll',
|
|
'notify_prune' ]
|
|
|
|
foreach ex : examples
|
|
executable(ex, ex + '.c',
|
|
dependencies: [ libfuse_dep ],
|
|
install: false)
|
|
endforeach
|
|
|
|
foreach ex : single_file_examples
|
|
executable(ex, [ex + '.c', 'single_file.c'],
|
|
dependencies: [ libfuse_dep ],
|
|
install: false)
|
|
endforeach
|
|
|
|
foreach ex : threaded_examples
|
|
executable(ex, ex + '.c',
|
|
dependencies: [ thread_dep, libfuse_dep ],
|
|
install: false)
|
|
endforeach
|
|
|
|
if platform != 'dragonfly' and add_languages('cpp', native : false, required : false)
|
|
executable('passthrough_hp', 'passthrough_hp.cc',
|
|
dependencies: [ thread_dep, libfuse_dep ],
|
|
install: false)
|
|
executable('memfs_ll', 'memfs_ll.cc',
|
|
dependencies: [ thread_dep, libfuse_dep ],
|
|
cpp_args : '-std=c++20',
|
|
install: false)
|
|
endif
|
|
|
|
# TODO: Link passthrough_fh with ulockmgr if available
|