mirror of
https://git.proxmox.com/git/fwupd
synced 2025-06-02 03:06:32 +00:00

This means we get a few bugs fixed: * We appear in the Add/Remove Programs UI * We have an uninstaller that works on Windows 10 * The installation is pretty, and scriptable * We actually install the translations
23 lines
441 B
Meson
23 lines
441 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
|