aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-10-07 15:01:19 -0400
committerDavid Robillard <d@drobilla.net>2022-10-07 15:01:19 -0400
commitea83b3051f90b21eda41d0839b3ed92d734f3754 (patch)
tree3ac3027092b44b117ec8704a9eca628cc11dd4a6
parent71fa73303e8df651edaf606c07ded6fec2b066af (diff)
downloadpugl-ea83b3051f90b21eda41d0839b3ed92d734f3754.tar.gz
pugl-ea83b3051f90b21eda41d0839b3ed92d734f3754.tar.bz2
pugl-ea83b3051f90b21eda41d0839b3ed92d734f3754.zip
Specify that native (build time) C++ support isn't required
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 48075d8..4eec4e2 100644
--- a/meson.build
+++ b/meson.build
@@ -27,7 +27,7 @@ cc = meson.get_compiler('c')
# Enable C++ support if we're building the examples
if not get_option('examples').disabled() or not get_option('tests').disabled()
- if add_languages(['cpp'], required: false)
+ if add_languages(['cpp'], native: false, required: false)
cpp = meson.get_compiler('cpp')
endif
endif