mirror of
https://github.com/LongSoft/UEFITool.git
synced 2024-11-22 16:08:23 +08:00
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')
|
||
|
)
|