| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- # Build directories
- Build/
- *-Build/
- # Output directories
- Bin/*
- !Bin/**/
- !Bin/*.bat
- !Bin/*.sh
- Bin/*.app/
- Bin/*.app.dSYM/
- Bin/Data/LuaScripts/jit/
- Bin/Screenshots
- *-Bin/
- Lib/
- *-Lib/
- # Compiled shaders
- *.vs2
- *.vs3
- *.ps2
- *.ps3
- # Compiled AngelScript
- *.asc
- # Compiled Lua script
- *.luc
- # Generated documentation
- Docs/html/
- Docs/qch/
- Docs/Doxyfile
- Docs/minimal-*
- # Eclipse project settings
- Source/.*project
- Source/.settings
- # KDevelop project settings
- *.kdev?
- # Qt Creator project settings
- Source/CMakeLists.txt.user
- # Android in-the-source project settings
- Source/Android/project.properties
- Source/Android/local.properties
- Source/Android/proguard-project.txt
- # Android in-the-source build and output directories
- Source/Android/Engine
- Source/Android/ThirdParty
- Source/Android/libs
- # Android in-the-source CMake build files
- CMakeCache.txt
- CMakeFiles/
- CMakeScripts/
- Makefile
- cmake_install.cmake
- install_manifest.txt
- # GCC PCH files that are some-how ending up in the Source tree instead of the Build directory
- *.gch
- # Misc.
- configure*
- *~
- *.swp
- .DS_Store
- *.log
- *.bak
- Thumbs.db
|