.gitignore 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. .gitmodules
  2. *build*/
  3. *flymake*
  4. CMakeLists.txt.user*
  5. *~
  6. *.autosave
  7. doc/_build/*
  8. *.kate-swp
  9. *.kdev4
  10. admin/win/nsi/l10n/pofiles/*.po
  11. *.swp
  12. *~$
  13. build*
  14. cscope.*
  15. tags
  16. t1.cfg
  17. ## Ignore Visual Studio Code config & environment files
  18. .vs/
  19. .vscode/
  20. ## Ignore Visual Studio temporary files, build results, and
  21. ## files generated by popular Visual Studio add-ons.
  22. # CMake integration on VS2019+
  23. CMakeSettings.json
  24. # User-specific files
  25. *.suo
  26. *.user
  27. *.sln.docstates
  28. # Build results
  29. [Dd]ebug/
  30. [Dd]ebugPublic/
  31. [Rr]elease/
  32. [Rr]eleases/
  33. x64/
  34. x86/
  35. build/
  36. bld/
  37. [Bb]in/
  38. [Oo]bj/
  39. # Roslyn cache directories
  40. *.ide/
  41. # MSTest test Results
  42. [Tt]est[Rr]esult*/
  43. [Bb]uild[Ll]og.*
  44. #NUNIT
  45. *.VisualState.xml
  46. TestResult.xml
  47. # Build Results of an ATL Project
  48. [Dd]ebugPS/
  49. [Rr]eleasePS/
  50. dlldata.c
  51. *_i.c
  52. *_p.c
  53. *_i.h
  54. *.ilk
  55. *.meta
  56. *.obj
  57. *.pch
  58. *.pdb
  59. *.pgc
  60. *.pgd
  61. *.rsp
  62. *.sbr
  63. *.tlb
  64. *.tli
  65. *.tlh
  66. *.tmp
  67. *.tmp_proj
  68. *.log
  69. *.vspscc
  70. *.vssscc
  71. .builds
  72. *.pidb
  73. *.svclog
  74. *.scc
  75. # macOS specific
  76. xcuserdata/
  77. **/.DS_Store
  78. # Visual C++ cache files
  79. ipch/
  80. *.aps
  81. *.ncb
  82. *.opensdf
  83. *.sdf
  84. *.cachefile
  85. # Visual Studio profiler
  86. *.psess
  87. *.vsp
  88. *.vspx
  89. # TFS 2012 Local Workspace
  90. $tf/
  91. # NCrunch
  92. _NCrunch_*
  93. .*crunch*.local.xml
  94. # Web workbench (sass)
  95. .sass-cache/
  96. # Installshield output folder
  97. [Ee]xpress/
  98. # Click-Once directory
  99. publish/
  100. # Publish Web Output
  101. *.[Pp]ublish.xml
  102. *.azurePubxml
  103. ## TODO: Comment the next line if you want to checkin your
  104. ## web deploy settings but do note that will include unencrypted
  105. ## passwords
  106. *.pubxml
  107. # NuGet Packages
  108. packages/*
  109. *.nupkg
  110. ## TODO: If the tool you use requires repositories.config
  111. ## uncomment the next line
  112. #!packages/repositories.config
  113. # Enable "build/" folder in the NuGet Packages folder since
  114. # NuGet packages use it for MSBuild targets.
  115. # This line needs to be after the ignore of the build folder
  116. # (and the packages folder if the line above has been uncommented)
  117. !packages/build/
  118. # Windows Store app package directory
  119. AppPackages/
  120. # Others
  121. sql/
  122. *.Cache
  123. ClientBin/
  124. [Ss]tyle[Cc]op.*
  125. ~$*
  126. *~
  127. *.dbmdl
  128. *.dbproj.schemaview
  129. *.pfx
  130. *.publishsettings
  131. node_modules/
  132. # RIA/Silverlight projects
  133. Generated_Code/
  134. # Backup & report files from converting an old project file
  135. # to a newer Visual Studio version. Backup files are not needed,
  136. # because we have git ;-)
  137. _UpgradeReport_Files/
  138. Backup*/
  139. UpgradeLog*.XML
  140. UpgradeLog*.htm
  141. # SQL Server files
  142. *.mdf
  143. *.ldf
  144. # Microsoft Fakes
  145. FakesAssemblies/
  146. #cmake temporary stuff
  147. CMakeCache.txt
  148. CMakeFiles/
  149. CPackConfig.cmake
  150. CPackOptions.cmake
  151. CPackSourceConfig.cmake
  152. compile_commands.json