From: Fabrice Fontaine Date: Mon, 20 Apr 2020 19:20:19 +0000 (+0200) Subject: Do not require C++ compiler for building X-Git-Tag: fuse-3.9.2~4 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=fc25c5002cae23151309fce6059e230545fd4d82;p=qemu-gpiodev%2Flibfuse.git Do not require C++ compiler for building Fixes: - http://autobuild.buildroot.org/results/a6e64213f2910b2b81e79cb1e96e558413d7f70a Signed-off-by: Fabrice Fontaine --- diff --git a/example/meson.build b/example/meson.build index 3edddea..2342df9 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' +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) diff --git a/meson.build b/meson.build index 69b3630..4428bdb 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('libfuse3', ['cpp', 'c'], version: '3.9.1', +project('libfuse3', ['c'], version: '3.9.1', meson_version: '>= 0.42', default_options: [ 'buildtype=debugoptimized' ])