fwupd/contrib/meson.build
Mario Limonciello ec0496b47a Make libfwupdplugin an internal library instead
This drops the requirement on us being so strict on a particular ABI version,
and also more strongly discourages out of tree plugin development.

We should still strive to keep API stable, and as such keep a symbol map still.

Use rpath instead for the static plugins, and set the plugin install directory
to just fwupd-$ABI$ as we're storing more than just plugins here now.
2022-09-28 10:04:12 +01:00

22 lines
383 B
Meson

subdir('firmware_packager')
if get_option('qubes')
subdir('qubes')
endif
con2 = configuration_data()
con2.set('FWUPD_VERSION', fwupd_version)
configure_file(
input: 'fwupd.spec.in',
output: 'fwupd.spec.in',
configuration: con2,
)
if host_machine.system() == 'windows'
configure_file(
input: 'fwupd.wxs.in',
output: 'fwupd.wxs',
configuration: conf
)
endif