mirror of
https://github.com/ThrowTheSwitch/Unity.git
synced 2025-10-18 09:02:20 +08:00

This is useful to help convey the usage rights and e.g. generate a Software Bill of Materials.
14 lines
365 B
Meson
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)
|