.gitignore 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. # ---> C++
  2. # Compiled Object files
  3. *.slo
  4. *.lo
  5. *.o
  6. *.obj
  7. # Precompiled Headers
  8. *.gch
  9. *.pch
  10. # Compiled Dynamic libraries
  11. *.so
  12. *.dylib
  13. *.dll
  14. # Fortran module files
  15. *.mod
  16. # Compiled Static libraries
  17. *.lai
  18. *.la
  19. *.a
  20. *.lib
  21. # Executables
  22. *.exe
  23. *.out
  24. *.app
  25. # ---> C
  26. # Object files
  27. *.o
  28. *.ko
  29. *.obj
  30. *.elf
  31. # Precompiled Headers
  32. *.gch
  33. *.pch
  34. # Libraries
  35. *.lib
  36. *.a
  37. *.la
  38. *.lo
  39. # Shared objects (inc. Windows DLLs)
  40. *.dll
  41. *.so
  42. *.so.*
  43. *.dylib
  44. # Executables
  45. *.exe
  46. *.out
  47. *.app
  48. *.i*86
  49. *.x86_64
  50. *.hex
  51. # Debug files
  52. *.dSYM/
  53. # ---> Python
  54. # Byte-compiled / optimized / DLL files
  55. __pycache__/
  56. *.py[cod]
  57. *$py.class
  58. # C extensions
  59. *.so
  60. # Distribution / packaging
  61. .Python
  62. env/
  63. build/
  64. develop-eggs/
  65. dist/
  66. downloads/
  67. eggs/
  68. .eggs/
  69. lib/
  70. lib64/
  71. parts/
  72. sdist/
  73. var/
  74. *.egg-info/
  75. .installed.cfg
  76. *.egg
  77. # PyInstaller
  78. # Usually these files are written by a python script from a template
  79. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  80. *.manifest
  81. *.spec
  82. # Installer logs
  83. pip-log.txt
  84. pip-delete-this-directory.txt
  85. # Unit test / coverage reports
  86. htmlcov/
  87. .tox/
  88. .coverage
  89. .coverage.*
  90. .cache
  91. nosetests.xml
  92. coverage.xml
  93. *,cover
  94. # Translations
  95. *.mo
  96. *.pot
  97. # Django stuff:
  98. *.log
  99. # Sphinx documentation
  100. docs/_build/
  101. # PyBuilder
  102. target/
  103. # ---> CMake
  104. CMakeCache.txt
  105. CMakeFiles
  106. CMakeScripts
  107. Makefile
  108. cmake_install.cmake
  109. install_manifest.txt
  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.*