UEFITool/meson.build
Richard Hughes eef00f73a4 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.
2022-09-01 20:44:13 +02:00

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')