.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.
parent
4f82b02958
commit
b651420d7f
|
@ -1,3 +1,34 @@
|
||||||
build
|
build
|
||||||
.project
|
.project
|
||||||
*.kdev4*
|
*.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__
|
||||||
|
|
Loading…
Reference in New Issue