mirror of
https://git.proxmox.com/git/fwupd
synced 2025-06-27 08:11:55 +00:00

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.
22 lines
383 B
Meson
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
|