Add build directory to .gitignore

It seems pretty typical to build in a build directory at the top level
of the repo.

In particular, that's what travis does:
`cmake . -Bbuild`
`cmake --build build`

Add build directory to .gitignore to avoid comitting it accidentally.
This commit is contained in:
Pierre Chevalier 2017-03-07 21:47:20 +00:00
parent 3819df6e37
commit f20e47db79

1
.gitignore vendored
View File

@ -13,3 +13,4 @@ CMakeCache.txt
*.suo *.suo
.vs/ .vs/
.vscode/ .vscode/
build