diff options
author | David Robillard <d@drobilla.net> | 2022-10-07 15:01:19 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-10-07 15:01:19 -0400 |
commit | ea83b3051f90b21eda41d0839b3ed92d734f3754 (patch) | |
tree | 3ac3027092b44b117ec8704a9eca628cc11dd4a6 /meson.build | |
parent | 71fa73303e8df651edaf606c07ded6fec2b066af (diff) | |
download | pugl-ea83b3051f90b21eda41d0839b3ed92d734f3754.tar.gz pugl-ea83b3051f90b21eda41d0839b3ed92d734f3754.tar.bz2 pugl-ea83b3051f90b21eda41d0839b3ed92d734f3754.zip |
Specify that native (build time) C++ support isn't required
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
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 |