mirror of
https://github.com/LongSoft/UEFITool.git
synced 2024-11-22 07:58:22 +08: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
12
.github/workflows/main.yml
vendored
12
.github/workflows/main.yml
vendored
@ -75,6 +75,18 @@ jobs:
|
|||||||
tag: ${{ github.ref }}
|
tag: ${{ github.ref }}
|
||||||
file_glob: true
|
file_glob: true
|
||||||
|
|
||||||
|
build_linux_meson:
|
||||||
|
name: Build on Linux with Meson
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Get Deps
|
||||||
|
run: sudo apt-get install -qq zlib1g-dev meson qt5-default
|
||||||
|
- name: Configure build
|
||||||
|
run: mkdir build-meson && meson ./build-meson
|
||||||
|
- name: Build everything
|
||||||
|
run: ninja -C build-meson
|
||||||
|
|
||||||
build_win:
|
build_win:
|
||||||
name: Build on Windows
|
name: Build on Windows
|
||||||
runs-on: windows-2019
|
runs-on: windows-2019
|
||||||
|
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')
|
||||||
|
)
|
41
common/meson.build
Normal file
41
common/meson.build
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
lzma = static_library('lzma',
|
||||||
|
sources: [
|
||||||
|
'LZMA/LzmaDecompress.c',
|
||||||
|
'LZMA/SDK/C/Bra86.c',
|
||||||
|
'LZMA/SDK/C/LzmaDec.c',
|
||||||
|
'Tiano/EfiTianoDecompress.c',
|
||||||
|
],
|
||||||
|
)
|
||||||
|
|
||||||
|
bstrlib = static_library('bstrlib',
|
||||||
|
sources: [
|
||||||
|
'bstrlib/bstrlib.c',
|
||||||
|
'bstrlib/bstrwrap.cpp',
|
||||||
|
],
|
||||||
|
)
|
||||||
|
|
||||||
|
uefitoolcommon = static_library('uefitoolcommon',
|
||||||
|
sources: [
|
||||||
|
'guiddatabase.cpp',
|
||||||
|
'types.cpp',
|
||||||
|
'descriptor.cpp',
|
||||||
|
'ffs.cpp',
|
||||||
|
'nvram.cpp',
|
||||||
|
'nvramparser.cpp',
|
||||||
|
'meparser.cpp',
|
||||||
|
'ffsparser.cpp',
|
||||||
|
'ffsreport.cpp',
|
||||||
|
'peimage.cpp',
|
||||||
|
'treeitem.cpp',
|
||||||
|
'treemodel.cpp',
|
||||||
|
'utility.cpp',
|
||||||
|
'ustring.cpp',
|
||||||
|
'sha256.c',
|
||||||
|
],
|
||||||
|
c_args: [
|
||||||
|
'-DU_ENABLE_NVRAM_PARSING_SUPPORT',
|
||||||
|
'-DU_ENABLE_ME_PARSING_SUPPORT',
|
||||||
|
'-DU_ENABLE_FIT_PARSING_SUPPORT',
|
||||||
|
'-DU_ENABLE_GUID_DATABASE_SUPPORT',
|
||||||
|
],
|
||||||
|
)
|
11
meson.build
Normal file
11
meson.build
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
project('UEFITool', ['c', 'cpp'],
|
||||||
|
version: 'A60',
|
||||||
|
license: 'BSD-2-Clause',
|
||||||
|
meson_version: '>=0.53.2',
|
||||||
|
default_options : ['c_std=c11', 'cpp_std=c++11'],
|
||||||
|
)
|
||||||
|
|
||||||
|
zlib = dependency('zlib')
|
||||||
|
|
||||||
|
subdir('common')
|
||||||
|
subdir('UEFIExtract')
|
Loading…
Reference in New Issue
Block a user