Do not require C++ compiler for building
authorFabrice Fontaine <fontaine.fabrice@gmail.com>
Mon, 20 Apr 2020 19:20:19 +0000 (21:20 +0200)
committerGitHub <noreply@github.com>
Mon, 20 Apr 2020 19:20:19 +0000 (20:20 +0100)
Fixes:
 - http://autobuild.buildroot.org/results/a6e64213f2910b2b81e79cb1e96e558413d7f70a

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
example/meson.build
meson.build

index 3edddea94abb4c8ded40e525b1bb15ab283cb1cf..2342df9c3a7961853e7be575f8a8897a4e28c2af 100644 (file)
@@ -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)
index 69b3630d38c80077811000c0f415a1fd1f8d9a22..4428bdb900f499d554380f58ee216b285285c37d 100644 (file)
@@ -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' ])