mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-16 11:30:57 +00:00

Automake and autoconf are impossible to fully understand and Meson now provides everything we need for a much smaller, faster, and more understandable build. See http://mesonbuild.com/ for more information.
20 lines
380 B
Meson
20 lines
380 B
Meson
cargs = ['-DG_LOG_DOMAIN="FuPluginUefi"']
|
|
|
|
shared_module('fu_plugin_uefi',
|
|
sources : [
|
|
'fu-plugin-uefi.c',
|
|
],
|
|
include_directories : [
|
|
include_directories('../..'),
|
|
include_directories('../../src'),
|
|
include_directories('../../libfwupd'),
|
|
],
|
|
install : true,
|
|
install_dir: plugin_dir,
|
|
c_args : cargs,
|
|
dependencies : [
|
|
plugin_deps,
|
|
fwup,
|
|
],
|
|
)
|