Advertisement
Guest User

Untitled

a guest
Oct 15th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. # This file is used to ignore files which are generated
  2. # ----------------------------------------------------------------------------
  3.  
  4. *~
  5. *.autosave
  6. *.a
  7. *.core
  8. *.moc
  9. *.o
  10. *.obj
  11. *.orig
  12. *.rej
  13. *.so
  14. *.so.*
  15. *_pch.h.cpp
  16. *_resource.rc
  17. *.qm
  18. .#*
  19. *.*#
  20. core
  21. !core/
  22. tags
  23. .DS_Store
  24. .directory
  25. *.debug
  26. Makefile*
  27. *.prl
  28. *.app
  29. moc_*.cpp
  30. ui_*.h
  31. qrc_*.cpp
  32. Thumbs.db
  33. *.res
  34. *.rc
  35. /.qmake.cache
  36. /.qmake.stash
  37.  
  38. # qtcreator generated files
  39. *.pro.user*
  40.  
  41. # xemacs temporary files
  42. *.flc
  43.  
  44. # Vim temporary files
  45. .*.swp
  46.  
  47. # Visual Studio generated files
  48. *.ib_pdb_index
  49. *.idb
  50. *.ilk
  51. *.pdb
  52. *.sln
  53. *.suo
  54. *.vcproj
  55. *vcproj.*.*.user
  56. *.ncb
  57. *.sdf
  58. *.opensdf
  59. *.vcxproj
  60. *vcxproj.*
  61.  
  62. # MinGW generated files
  63. *.Debug
  64. *.Release
  65.  
  66. # Python byte code
  67. *.pyc
  68.  
  69. # Binaries
  70. # --------
  71. *.dll
  72. *.exe
  73.  
  74. build/
  75.  
  76. ## Qt Creator specific
  77. ## from https://github.com/github/gitignore/blob/master/Qt.gitignore
  78. # Qt-es
  79.  
  80. /.qmake.cache
  81. /.qmake.stash
  82. *.pro.user
  83. *.pro.user.*
  84. *.qbs.user
  85. *.qbs.user.*
  86. *.moc
  87. moc_*.cpp
  88. qrc_*.cpp
  89. ui_*.h
  90. Makefile*
  91. *build-*
  92.  
  93. # QtCreator
  94.  
  95. *.autosave
  96.  
  97. # QtCtreator Qml
  98. *.qmlproject.user
  99. *.qmlproject.user.*
  100.  
  101. # QtCtreator CMake
  102. CMakeLists.txt.user*
  103.  
  104.  
  105. ## Visual Studio specific
  106. ## from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
  107. # User-specific files
  108. *.suo
  109. *.user
  110. *.userosscache
  111. *.sln.docstates
  112.  
  113. # User-specific files (MonoDevelop/Xamarin Studio)
  114. *.userprefs
  115.  
  116. # Build results
  117. [Dd]ebug/
  118. [Dd]ebugPublic/
  119. [Rr]elease/
  120. [Rr]eleases/
  121. x64/
  122. x86/
  123. bld/
  124. [Bb]in/
  125. [Oo]bj/
  126. [Ll]og/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement