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