fwupd/plugins/thunderbolt-power/meson.build
Mario Limonciello 8f17e1ccf4 Use the intel-wmi-thunderbolt kernel module to force power
When available on a system this module will allow force powering a TBT device with nothing plugged in.
2017-09-13 03:12:50 +08:00

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,
],
)