From b651420d7f465ff62e25b93a294c84ea9e5e475c Mon Sep 17 00:00:00 2001 From: Jonne Nauha Date: Wed, 21 May 2014 05:47:35 +0300 Subject: [PATCH] .gitignore: Add stuff to the ignore list if one happens to build in the root and not in /build. This is atm kind of mandatory if you want the regression tests to find your binary. --- .gitignore | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/.gitignore b/.gitignore index 7fe107086..4ddf06e63 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,34 @@ build .project *.kdev4* + +# Visual Studio +*.sln +*.ncb +*.vcproj + +# Output +bin/ +lib/ +contrib/ + +# Generated +assimp.pc +revision.h +contrib/zlib/zconf.h +contrib/zlib/zlib.pc + +# CMake +CMakeCache.txt +CMakeFiles +cmake_install.cmake +cmake_uninstall.cmake +*.dir/ +assimp-config.cmake +assimp-config-version.cmake + +# Tests +test/results + +# Python +__pycache__