fwupd/contrib/meson.build
Richard Hughes 77bb1ff479 Switch the Windows installer from NSIS to MSI
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
2022-05-09 15:49:40 +01:00

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