diff --git a/.gitattributes b/.gitattributes index ad95226..f84c162 100644 --- a/.gitattributes +++ b/.gitattributes @@ -16,6 +16,7 @@ *.md text makefile text rakefile text +meson.build text #These files are binary and should not be normalized diff --git a/.gitignore b/.gitignore index a383c3c..083b4f8 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/meson.build b/meson.build index a2c0a15..062fcad 100644 --- a/meson.build +++ b/meson.build @@ -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',