1
0
mirror of https://github.com/ThrowTheSwitch/Unity.git synced 2026-01-27 02:11:36 +01:00

meson: supports version

- generate version header
This commit is contained in:
Vitalii Shylienkov
2020-04-13 12:47:07 +02:00
parent d603ccdc3b
commit 2a2a4d19c5
2 changed files with 11 additions and 1 deletions

View File

@@ -7,7 +7,8 @@
project('unity', 'c',
license: 'MIT',
meson_version: '>=0.53.0',
default_options: ['layout=flat', 'warning_level=3', 'werror=true', 'c_std=c11']
default_options: ['layout=flat', 'warning_level=3', 'werror=true', 'c_std=c11'],
version: '2.5.0'
)
lang = 'c'
cc = meson.get_compiler(lang)