aboutsummaryrefslogtreecommitdiffstats
path: root/meson/library
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-01-07 17:46:36 -0500
committerDavid Robillard <d@drobilla.net>2023-01-07 19:26:29 -0500
commitb6ecd23cfb3c82c2c3f05795ebd9c65314e6367c (patch)
tree61a557e16d92a9cfdf9a8460ae960dc8c972b32c /meson/library
parentf8802f31089656379f056eb390c0d38484589136 (diff)
downloadpugl-b6ecd23cfb3c82c2c3f05795ebd9c65314e6367c.tar.gz
pugl-b6ecd23cfb3c82c2c3f05795ebd9c65314e6367c.tar.bz2
pugl-b6ecd23cfb3c82c2c3f05795ebd9c65314e6367c.zip
MacOS: Consistently use the same flags for ObjC and ObjC++
The implementation only uses ObjC, but this is mistake-prone, it's better to just have things set up properly for all of the languages that are present in the build at all.
Diffstat (limited to 'meson/library')
-rw-r--r--meson/library/meson.build5
1 files changed, 4 insertions, 1 deletions
diff --git a/meson/library/meson.build b/meson/library/meson.build
index 1d4c36c..722406e 100644
--- a/meson/library/meson.build
+++ b/meson/library/meson.build
@@ -21,5 +21,8 @@ elif get_option('default_library') == 'shared'
library_type = 'shared_library'
else
library_type = 'static_library'
- add_project_arguments(['-DPUGL_STATIC'], language: ['c', 'cpp', 'objc'])
+ add_project_arguments(
+ ['-DPUGL_STATIC'],
+ language: ['c', 'cpp', 'objc', 'objcpp'],
+ )
endif