meson.build 361 字节
Newer Older
M
Michael Brockus 已提交
1
#
2 3
# build script written by : Michael Brockus.
# github repo author: Mike Karlesky, Mark VanderVoord, Greg Williams.
M
Michael Brockus 已提交
4
#
5 6 7 8 9 10 11
# license: MIT
#
project('unity', 'c',
    license: 'MIT',
    meson_version: '>=0.53.0',
    default_options: ['werror=true', 'c_std=c11']
)
M
Michael Brockus 已提交
12 13

subdir('src')
M
Michael Brockus 已提交
14
unity_dep = declare_dependency(link_with: unity_lib, include_directories: unity_dir)