1
0
mirror of https://github.com/ThrowTheSwitch/Unity.git synced 2026-01-24 08:51:36 +01:00

Merge pull request #451 from michaelbadcrumble/meson_support

Meson support upgrade to version 0.52.0.
This commit is contained in:
Mark VanderVoord
2019-10-21 06:02:50 -04:00
committed by GitHub
3 changed files with 4 additions and 1 deletions

1
.gitattributes vendored
View File

@@ -16,6 +16,7 @@
*.md text
makefile text
rakefile text
meson.build text
#These files are binary and should not be normalized

2
.gitignore vendored
View File

@@ -1,4 +1,5 @@
build/
builddir/
test/sandbox
.DS_Store
examples/example_1/test1.exe
@@ -7,3 +8,4 @@ examples/example_2/all_tests.exe
examples/example_1/test1.out
examples/example_1/test2.out
examples/example_2/all_tests.out
examples/example_4/builddir

View File

@@ -13,7 +13,7 @@
project('unity', 'c',
license : 'MIT',
meson_version : '>=0.50.0',
meson_version : '>=0.52.0',
default_options: [
'buildtype=minsize',
'optimization=3',