.gitignore 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  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. # ---> Python
  61. # Byte-compiled / optimized / DLL files
  62. __pycache__/
  63. *.py[cod]
  64. *$py.class
  65. # C extensions
  66. *.so
  67. # Distribution / packaging
  68. .Python
  69. env/
  70. build/
  71. develop-eggs/
  72. dist/
  73. downloads/
  74. eggs/
  75. .eggs/
  76. lib/
  77. lib64/
  78. parts/
  79. sdist/
  80. var/
  81. *.egg-info/
  82. .installed.cfg
  83. *.egg
  84. # PyInstaller
  85. # Usually these files are written by a python script from a template
  86. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  87. *.manifest
  88. *.spec
  89. # Installer logs
  90. pip-log.txt
  91. pip-delete-this-directory.txt
  92. # Unit test / coverage reports
  93. htmlcov/
  94. .tox/
  95. .coverage
  96. .coverage.*
  97. .cache
  98. nosetests.xml
  99. coverage.xml
  100. *,cover
  101. # Translations
  102. *.mo
  103. *.pot
  104. # Django stuff:
  105. *.log
  106. # Sphinx documentation
  107. docs/_build/
  108. # PyBuilder
  109. target/
  110. # ---> Qt
  111. # C++ objects and libs
  112. *.slo
  113. *.lo
  114. *.o
  115. *.a
  116. *.la
  117. *.lai
  118. *.so
  119. *.dll
  120. *.dylib
  121. # Qt-es
  122. /.qmake.cache
  123. /.qmake.stash
  124. *.pro.user
  125. *.pro.user.*
  126. *.qbs.user
  127. *.qbs.user.*
  128. *.moc
  129. moc_*.cpp
  130. qrc_*.cpp
  131. ui_*.h
  132. Makefile*
  133. *-build-*
  134. # QtCreator
  135. *.autosave
  136. #QtCtreator Qml
  137. *.qmlproject.user
  138. *.qmlproject.user.*