mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-09 13:52:01 -04:00
Add UEFIFind as a meson target
This commit is contained in:
parent
d93f1ae749
commit
1675498d4d
3 changed files with 18 additions and 0 deletions
16
UEFIFind/meson.build
Normal file
16
UEFIFind/meson.build
Normal file
|
@ -0,0 +1,16 @@
|
|||
executable(
|
||||
'UEFIFind',
|
||||
sources: [
|
||||
'uefifind_main.cpp',
|
||||
'uefifind.cpp',
|
||||
],
|
||||
link_with: [
|
||||
lzma,
|
||||
bstrlib,
|
||||
uefitoolcommon,
|
||||
],
|
||||
dependencies: [
|
||||
zlib,
|
||||
],
|
||||
install: true,
|
||||
)
|
|
@ -25,6 +25,7 @@ uefitoolcommon = static_library('uefitoolcommon',
|
|||
'meparser.cpp',
|
||||
'ffsparser.cpp',
|
||||
'ffsreport.cpp',
|
||||
'ffsutils.cpp',
|
||||
'peimage.cpp',
|
||||
'treeitem.cpp',
|
||||
'treemodel.cpp',
|
||||
|
|
|
@ -9,3 +9,4 @@ zlib = dependency('zlib')
|
|||
|
||||
subdir('common')
|
||||
subdir('UEFIExtract')
|
||||
subdir('UEFIFind')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue