mirror of
https://git.proxmox.com/git/fwupd
synced 2025-06-12 10:35:22 +00:00

This allows us to disable it automatically on architectures that aren't supported and OSes that aren't supported. Link: https://bugs.launchpad.net/ubuntu/+source/fwupd/+bug/1987067
26 lines
407 B
Meson
26 lines
407 B
Meson
if hsi
|
|
cargs = ['-DG_LOG_DOMAIN="FuPluginLinuxTainted"']
|
|
|
|
shared_module('fu_plugin_linux_tainted',
|
|
fu_hash,
|
|
sources: [
|
|
'fu-plugin-linux-tainted.c',
|
|
],
|
|
include_directories: [
|
|
root_incdir,
|
|
fwupd_incdir,
|
|
fwupdplugin_incdir,
|
|
],
|
|
install: true,
|
|
install_dir: plugin_dir,
|
|
link_with: [
|
|
fwupd,
|
|
fwupdplugin,
|
|
],
|
|
c_args: cargs,
|
|
dependencies: [
|
|
plugin_deps,
|
|
],
|
|
)
|
|
endif
|