mirror of
https://git.proxmox.com/git/fwupd
synced 2025-06-12 02:18:39 +00:00
23 lines
438 B
Meson
23 lines
438 B
Meson
subdir('firmware_packager')
|
|
if get_option('qubes')
|
|
subdir('qubes')
|
|
endif
|
|
|
|
con2 = configuration_data()
|
|
con2.set('FWUPD_VERSION', fwupd_version)
|
|
con2.set('FWUPD_PLUGINVER', libfwupdplugin_lt_current)
|
|
|
|
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
|