mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-31 23:38:22 -04:00
Add Meson buildsystem
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.
This commit is contained in:
parent
7695927eec
commit
eef00f73a4
4 changed files with 82 additions and 0 deletions
18
UEFIExtract/meson.build
Normal file
18
UEFIExtract/meson.build
Normal file
|
@ -0,0 +1,18 @@
|
|||
executable(
|
||||
'UEFIExtract',
|
||||
sources: [
|
||||
'uefiextract_main.cpp',
|
||||
'ffsdumper.cpp',
|
||||
'uefidump.cpp',
|
||||
],
|
||||
link_with: [
|
||||
lzma,
|
||||
bstrlib,
|
||||
uefitoolcommon,
|
||||
],
|
||||
dependencies: [
|
||||
zlib,
|
||||
],
|
||||
install: true,
|
||||
install_dir: get_option('bindir')
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue