mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-16 21:14:38 +00:00

This reverts commit 6b0eb07886
.
Per debian bug 896012 this is intentional behavior and a problem with
linitin. An additional commit will be added to ignore this lintian
error.
24 lines
461 B
Meson
24 lines
461 B
Meson
cargs = ['-DG_LOG_DOMAIN="FuPluginTest"']
|
|
|
|
install_dummy = false
|
|
if get_option('plugin_dummy')
|
|
install_dummy = true
|
|
endif
|
|
|
|
shared_module('fu_plugin_test',
|
|
sources : [
|
|
'fu-plugin-test.c',
|
|
],
|
|
include_directories : [
|
|
include_directories('../..'),
|
|
include_directories('../../src'),
|
|
include_directories('../../libfwupd'),
|
|
],
|
|
install : install_dummy,
|
|
install_dir: plugin_dir,
|
|
c_args : cargs,
|
|
dependencies : [
|
|
plugin_deps,
|
|
],
|
|
)
|