With meson the build directory is always chosen manually, so it can be named anything, but in practice "build" is the usual name. Let's add that to .gitignore to keep the repository status clean after building. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index b6ba14d..3aa7349 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,7 @@ Makefile Makefile.in README aclocal.m4 +build *.cache compile config.guess -- 2.18.0