Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
41 lines (41 sloc)
815 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Ignore image thumbnail files created by windows | |
| Thumbs.db | |
| # Ignore Finder view option files created by OS X | |
| .DS_Store | |
| # Ignore autogenerated source files | |
| Externals/mGBA/version.c | |
| Source/Core/Common/scmrev.h | |
| # Ignore files output by build | |
| /[Bb]uild*/ | |
| /[Bb]inary*/ | |
| /obj/ | |
| # Ignore files output by Android cmake build | |
| /Source/Android/app/.cxx/ | |
| /libs/ | |
| # Ignore various files created by visual studio/msbuild | |
| *.ipch | |
| *.opensdf | |
| *.sdf | |
| *.suo | |
| *.vcxproj.user | |
| *.obj | |
| *.tlog | |
| *.VC.opendb | |
| *.VC.db | |
| .vs*/ | |
| /Source/enc_temp_folder/ | |
| # Ignore build info file created by QtCreator | |
| CMakeLists.txt.user | |
| # Ignore files created by posix people | |
| *~ | |
| # Ignore vim swapfiles | |
| *.swp | |
| # Ignore emacs temp files | |
| \#*\# | |
| .\#* | |
| # Ignore kdevelop files/dirs | |
| *.kdev4 | |
| # Ignore IDEA/Clion files/dirs | |
| /.idea/ | |
| # Ignore Visual Studio Code's working dir | |
| /.vscode/ |