diff options
author | Gleb Popov <6yearold@gmail.com> | 2025-06-24 14:37:34 +0300 |
---|---|---|
committer | Bernd Schubert <bernd@bsbernd.com> | 2025-06-25 13:04:59 +0200 |
commit | f0ec646e87d726b6c10c951e8bf5b7f5e16cc38f (patch) | |
tree | c6c81da2ed27a8658f20019edb54b50c050627b4 /example | |
parent | 8e649e8f5dbb1d619619643296b75db8ee63aa70 (diff) | |
download | libfuse-f0ec646e87d726b6c10c951e8bf5b7f5e16cc38f.tar.gz |
meson: Enable building C++ examples on FreeBSD
Signed-off-by: Gleb Popov <6yearold@gmail.com>
Diffstat (limited to 'example')
-rw-r--r-- | example/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/meson.build b/example/meson.build index b2e896c..701afa7 100644 --- a/example/meson.build +++ b/example/meson.build @@ -31,7 +31,7 @@ foreach ex : threaded_examples install: false) endforeach -if not platform.endswith('bsd') and platform != 'dragonfly' and add_languages('cpp', required : false) +if platform != 'dragonfly' and add_languages('cpp', required : false) executable('passthrough_hp', 'passthrough_hp.cc', dependencies: [ thread_dep, libfuse_dep ], install: false) |