Files
Unity/meson.build
Eli Schwartz 1b13155244 meson: include the license info in the project definition
This is useful to help convey the usage rights and e.g. generate a
Software Bill of Materials.
2022-06-19 13:49:52 -04:00

14 lines
365 B
Meson

#
# build script written by : Michael Gene Brockus.
# github repo author: Mike Karlesky, Mark VanderVoord, Greg Williams.
#
# license: MIT
#
project('unity', 'c',
license: 'MIT',
meson_version: '>=0.37.0',
default_options: ['werror=true', 'c_std=c11'])
subdir('src')
unity_dep = declare_dependency(link_with: unity_lib, include_directories: unity_dir)