.gitignore 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. # ---> C
  2. # Object files
  3. *.o
  4. *.ko
  5. *.obj
  6. *.elf
  7. # Precompiled Headers
  8. *.gch
  9. *.pch
  10. # Libraries
  11. *.lib
  12. *.a
  13. *.la
  14. *.lo
  15. # Shared objects (inc. Windows DLLs)
  16. *.dll
  17. *.so
  18. *.so.*
  19. *.dylib
  20. # Executables
  21. *.exe
  22. *.out
  23. *.app
  24. *.i*86
  25. *.x86_64
  26. *.hex
  27. # Debug files
  28. *.dSYM/
  29. # ---> C++
  30. # Compiled Object files
  31. *.slo
  32. *.lo
  33. *.o
  34. *.obj
  35. # Precompiled Headers
  36. *.gch
  37. *.pch
  38. # Compiled Dynamic libraries
  39. *.so
  40. *.dylib
  41. *.dll
  42. # Fortran module files
  43. *.mod
  44. # Compiled Static libraries
  45. *.lai
  46. *.la
  47. *.a
  48. *.lib
  49. # Executables
  50. *.exe
  51. *.out
  52. *.app
  53. # ---> CUDA
  54. *.i
  55. *.ii
  56. *.gpu
  57. *.ptx
  58. *.cubin
  59. *.fatbin
  60. # ---> Java
  61. *.class
  62. # Mobile Tools for Java (J2ME)
  63. .mtj.tmp/
  64. # Package Files #
  65. *.jar
  66. *.war
  67. *.ear
  68. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  69. hs_err_pid*
  70. # ---> Python
  71. # Byte-compiled / optimized / DLL files
  72. __pycache__/
  73. *.py[cod]
  74. *$py.class
  75. # C extensions
  76. *.so
  77. # Distribution / packaging
  78. .Python
  79. env/
  80. build/
  81. develop-eggs/
  82. dist/
  83. downloads/
  84. eggs/
  85. .eggs/
  86. lib/
  87. lib64/
  88. parts/
  89. sdist/
  90. var/
  91. *.egg-info/
  92. .installed.cfg
  93. *.egg
  94. # PyInstaller
  95. # Usually these files are written by a python script from a template
  96. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  97. *.manifest
  98. *.spec
  99. # Installer logs
  100. pip-log.txt
  101. pip-delete-this-directory.txt
  102. # Unit test / coverage reports
  103. htmlcov/
  104. .tox/
  105. .coverage
  106. .coverage.*
  107. .cache
  108. nosetests.xml
  109. coverage.xml
  110. *,cover
  111. # Translations
  112. *.mo
  113. *.pot
  114. # Django stuff:
  115. *.log
  116. # Sphinx documentation
  117. docs/_build/
  118. # PyBuilder
  119. target/
  120. # ---> Qt
  121. # C++ objects and libs
  122. *.slo
  123. *.lo
  124. *.o
  125. *.a
  126. *.la
  127. *.lai
  128. *.so
  129. *.dll
  130. *.dylib
  131. # Qt-es
  132. /.qmake.cache
  133. /.qmake.stash
  134. *.pro.user
  135. *.pro.user.*
  136. *.qbs.user
  137. *.qbs.user.*
  138. *.moc
  139. moc_*.cpp
  140. qrc_*.cpp
  141. ui_*.h
  142. Makefile*
  143. *-build-*
  144. # QtCreator
  145. *.autosave
  146. #QtCtreator Qml
  147. *.qmlproject.user
  148. *.qmlproject.user.*