mirror of
https://git.proxmox.com/git/fwupd
synced 2025-06-14 03:05:00 +00:00
16 lines
464 B
Meson
16 lines
464 B
Meson
if get_option('plugin_powerd').disable_auto_if(host_machine.system() != 'linux').require(gio.version().version_compare('>=2.58'),
|
|
error_message: 'gio 2.58 or later needed for powerd').allowed()
|
|
cargs = ['-DG_LOG_DOMAIN="FuPluginPowerd"']
|
|
|
|
plugin_builtins += static_library('fu_plugin_powerd',
|
|
sources: [
|
|
'fu-powerd-plugin.c',
|
|
],
|
|
include_directories: plugin_incdirs,
|
|
link_with: plugin_libs,
|
|
c_args: cargs,
|
|
dependencies: plugin_deps,
|
|
)
|
|
|
|
endif
|