mirror of
https://git.proxmox.com/git/fwupd
synced 2025-06-02 13:45:54 +00:00

When available on a system this module will allow force powering a TBT device with nothing plugged in.
20 lines
449 B
Meson
20 lines
449 B
Meson
cargs = ['-DG_LOG_DOMAIN="FuPluginThunderboltPower"']
|
|
|
|
fu_plugin_thunderbolt_power = shared_module('fu_plugin_thunderbolt_power',
|
|
sources : [
|
|
'fu-plugin-thunderbolt-power.c',
|
|
],
|
|
include_directories : [
|
|
include_directories('../..'),
|
|
include_directories('../../src'),
|
|
include_directories('../../libfwupd'),
|
|
],
|
|
install : true,
|
|
install_dir: plugin_dir,
|
|
c_args : cargs,
|
|
dependencies : [
|
|
plugin_deps,
|
|
gudev,
|
|
],
|
|
)
|