.gitignore 687 B

123456789101112131415161718192021222324252627282930313233
  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. Source/Core/Common/scmrev.h
  7. # Ignore files output by build
  8. /[Bb]uild*/
  9. /[Bb]inary/
  10. /obj/
  11. # Android cmake builds to here then copies to Source/Android.
  12. /libs/
  13. # Ignore various files created by visual studio/msbuild
  14. *.ipch
  15. *.opensdf
  16. *.sdf
  17. *.suo
  18. *.vcxproj.user
  19. *.obj
  20. *.tlog
  21. # Ignore build info file created by QtCreator
  22. CMakeLists.txt.user
  23. # Ignore files created by posix people
  24. *~
  25. # Ignore vim swapfiles
  26. *.swp
  27. # Ignore transifex configuration directory
  28. .tx
  29. # Ignore kdevelop files/dirs
  30. *.kdev4
  31. # Ignore IDEA/Clion files/dirs
  32. /.idea/