.gitignore 854 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # Ignore image thumbnail files created by windows
  2. Thumbs.db
  3. # Ignore Finder view option files created by OS X
  4. .DS_Store
  5. # Ignore autogenerated source files
  6. Externals/mGBA/version.c
  7. Source/Core/Common/scmrev.h
  8. # Ignore files output by build
  9. /cmake-build-debug
  10. /cmake-build-release
  11. /[Bb]uild*/
  12. /[Bb]inary*/
  13. /obj/
  14. # Ignore files output by Android cmake build
  15. /Source/Android/app/.cxx/
  16. /libs/
  17. # Ignore various files created by visual studio/msbuild
  18. *.ipch
  19. *.opensdf
  20. *.sdf
  21. *.suo
  22. *.vcxproj.user
  23. *.obj
  24. *.tlog
  25. *.VC.opendb
  26. *.VC.db
  27. .vs*/
  28. /Source/enc_temp_folder/
  29. # Ignore build info file created by QtCreator
  30. CMakeLists.txt.user
  31. # Ignore files created by posix people
  32. *~
  33. # Ignore vim swapfiles
  34. *.swp
  35. # Ignore emacs temp files
  36. \#*\#
  37. .\#*
  38. # Ignore kdevelop files/dirs
  39. *.kdev4
  40. # Ignore IDEA/Clion files/dirs
  41. .idea/
  42. # Ignore Visual Studio Code's working dir
  43. /.vscode/