The libssh library by default does not allow in-source build (with cmake MacroEnsureOutOfSourceBuild macro). The INSTALL file (implicitly) suggests creating a build directory. So lets add build to list of git ignore files to avoid complaints from git.
Signed-off-by: Luka Perkov <[email protected]> --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index f6b09c9..911e0da 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ obj cscope.* tags +build -- 1.9.0
