mirror of
https://github.com/LongSoft/UEFITool.git
synced 2024-11-22 16:08:23 +08:00
eef00f73a4
This allows UEFIExtract to build on a greater variety of targets and more importantly allows us to build with the system-defined hardening protections present in enterprise distributions.
19 lines
267 B
Meson
19 lines
267 B
Meson
executable(
|
|
'UEFIExtract',
|
|
sources: [
|
|
'uefiextract_main.cpp',
|
|
'ffsdumper.cpp',
|
|
'uefidump.cpp',
|
|
],
|
|
link_with: [
|
|
lzma,
|
|
bstrlib,
|
|
uefitoolcommon,
|
|
],
|
|
dependencies: [
|
|
zlib,
|
|
],
|
|
install: true,
|
|
install_dir: get_option('bindir')
|
|
)
|