mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-16 09:56:52 +00:00

This also allows us to write mixed-endian structures and adds tests. As part of this commit we've also changed the API of something that's not yet been in any tarball release, so no pitchforks please.
23 lines
420 B
Meson
23 lines
420 B
Meson
cargs = ['-DG_LOG_DOMAIN="FuPluginAmt"']
|
|
|
|
shared_module('fu_plugin_amt',
|
|
fu_hash,
|
|
sources : [
|
|
'fu-plugin-amt.c',
|
|
],
|
|
include_directories : [
|
|
include_directories('../..'),
|
|
include_directories('../../src'),
|
|
include_directories('../../libfwupd'),
|
|
],
|
|
install : true,
|
|
install_dir: plugin_dir,
|
|
link_with : [
|
|
libfwupdprivate,
|
|
],
|
|
c_args : cargs,
|
|
dependencies : [
|
|
plugin_deps,
|
|
],
|
|
)
|