fwupd/contrib/meson.build
Richard Hughes a5a978b3f6 Rename some confusing API
More than one person has asked about 'why call fu_plugin_update() for a
reinstall or downgrade' and I didn't have a very good answer.

The plugin API is not officially stable, and we should fix things to be
less confusing. Use the same verbs as the FuDevice vfuncs instead.
2021-08-06 19:49:53 +01:00

24 lines
485 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'
# replace @FWUPD_VERSION@
configure_file(
input : 'setup-win32.nsi.in',
output : 'setup-win32.nsi',
configuration : con2,
)
endif