mirror of
https://github.com/openharmony/third_party_libfuse.git
synced 2026-08-26 20:47:37 -04:00
bd5ee7c317
Signed-off-by: fangzhiyi18 <fangzhiyi1@h-partners.com>
45 lines
1.5 KiB
Meson
45 lines
1.5 KiB
Meson
examples = [ 'passthrough', 'passthrough_fh',
|
|
'hello', 'hello_ll',
|
|
'printcap', 'ioctl_client', 'poll_client',
|
|
'ioctl', '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' ]
|
|
endif
|
|
|
|
threaded_examples = [ 'notify_inval_inode',
|
|
'invalidate_path',
|
|
'notify_store_retrieve',
|
|
'notify_inval_entry',
|
|
'poll' ]
|
|
|
|
foreach ex : examples
|
|
executable(ex, ex + '.c',
|
|
dependencies: [ libfuse_dep ],
|
|
install: false)
|
|
endforeach
|
|
|
|
|
|
foreach ex : threaded_examples
|
|
executable(ex, ex + '.c',
|
|
dependencies: [ thread_dep, libfuse_dep ],
|
|
install: false)
|
|
endforeach
|
|
|
|
if not platform.endswith('bsd') and platform != 'dragonfly' and add_languages('cpp', 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++17',
|
|
install: false)
|
|
endif
|
|
|
|
# TODO: Link passthrough_fh with ulockmgr if available
|