aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2023-08-30 12:20:53 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2023-09-07 13:32:37 +0200
commit2c13c574418e4b17974f7ef71d200ac064fb8d4b (patch)
treec6a7220caebea402bff56da2897965ff4e0a1589 /plugins
parent2a5919ab642a3273698233ef46c83741eec327bf (diff)
downloadqemu-2c13c574418e4b17974f7ef71d200ac064fb8d4b.zip
qemu-2c13c574418e4b17974f7ef71d200ac064fb8d4b.tar.gz
qemu-2c13c574418e4b17974f7ef71d200ac064fb8d4b.tar.bz2
configure, meson: move --enable-plugins to meson
While the option still needs to be parsed in the configure script (it's needed by tests/tcg, and also to decide about recursing into contrib/plugins), passing it to Meson can be done with -D instead of using config-host.mak. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'plugins')
-rw-r--r--plugins/meson.build12
1 files changed, 7 insertions, 5 deletions
diff --git a/plugins/meson.build b/plugins/meson.build
index 752377c..71ed996 100644
--- a/plugins/meson.build
+++ b/plugins/meson.build
@@ -13,8 +13,10 @@ if not enable_modules
endif
endif
-specific_ss.add(when: 'CONFIG_PLUGIN', if_true: [files(
- 'loader.c',
- 'core.c',
- 'api.c',
-), declare_dependency(link_args: plugin_ldflags)])
+if get_option('plugins')
+ specific_ss.add(files(
+ 'loader.c',
+ 'core.c',
+ 'api.c',
+ ), declare_dependency(link_args: plugin_ldflags))
+endif