mirror of
https://github.com/LongSoft/UEFITool.git
synced 2024-11-23 16:38:23 +08:00
Add UEFIFind as a meson target
This commit is contained in:
parent
d93f1ae749
commit
1675498d4d
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',
|
'meparser.cpp',
|
||||||
'ffsparser.cpp',
|
'ffsparser.cpp',
|
||||||
'ffsreport.cpp',
|
'ffsreport.cpp',
|
||||||
|
'ffsutils.cpp',
|
||||||
'peimage.cpp',
|
'peimage.cpp',
|
||||||
'treeitem.cpp',
|
'treeitem.cpp',
|
||||||
'treemodel.cpp',
|
'treemodel.cpp',
|
||||||
|
@ -9,3 +9,4 @@ zlib = dependency('zlib')
|
|||||||
|
|
||||||
subdir('common')
|
subdir('common')
|
||||||
subdir('UEFIExtract')
|
subdir('UEFIExtract')
|
||||||
|
subdir('UEFIFind')
|
||||||
|
Loading…
Reference in New Issue
Block a user