diff --git a/gtk/meson.build b/gtk/meson.build index ea866d8..0d312f3 100644 --- a/gtk/meson.build +++ b/gtk/meson.build @@ -1102,6 +1102,7 @@ gtk_query_settings = executable( 'gtk-query-settings.c', c_args: gtk_cargs, dependencies: libgtk_dep, + link_language: 'cpp', install: true ) gtk_tools += gtk_query_settings @@ -1111,6 +1112,7 @@ gtk_builder_tool = executable( 'gtk-builder-tool.c', c_args: gtk_cargs, dependencies: libgtk_dep, + link_language: 'cpp', install: true ) gtk_tools += gtk_builder_tool @@ -1143,6 +1145,7 @@ gtk_update_icon_cache = executable( extra_update_icon_cache_objs, c_args: gtk_cargs, dependencies: libgtk_dep, + link_language: 'cpp', install: true ) gtk_tools += gtk_update_icon_cache @@ -1153,6 +1156,7 @@ gtk_query_immodules = executable( 'gtkutils.c', c_args: gtk_cargs, dependencies: libgtk_dep, + link_language: 'cpp', install: true ) gtk_tools += gtk_query_immodules @@ -1162,6 +1166,7 @@ gtk_encode_symbolic_svg = executable( 'encodesymbolic.c', c_args: gtk_cargs, dependencies: libgtk_dep, + link_language: 'cpp', install: true ) gtk_tools += gtk_encode_symbolic_svg @@ -1171,6 +1176,7 @@ gtk_launch = executable( 'gtk-launch.c', c_args: gtk_cargs, dependencies: libgtk_dep, + link_language: 'cpp', install: true ) gtk_tools += gtk_launch diff --git a/meson.build b/meson.build index dd6b888..e60ad30 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('gtk', 'c', +project('gtk', 'c', 'cpp', version: '3.24.51', default_options: [ 'buildtype=debugoptimized',