.gitignore 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  1. civetweb
  2. civetweb_test
  3. libcivetweb.a
  4. libcivetweb.so
  5. libcivetweb.so.*
  6. *-cache
  7. out
  8. *.dmg
  9. *.msi
  10. *.exe
  11. *.zip
  12. *.trace
  13. [oO]utput
  14. [tT]esting
  15. examples/embedded_c/embedded_c
  16. *.a
  17. *.o
  18. ################# //hash
  19. ## CMake
  20. #################
  21. /CMakeCache.txt
  22. /CMakeFiles
  23. /mingw-builds
  24. #################
  25. ## Eclipse
  26. #################
  27. *.pydevproject
  28. .project
  29. .metadata
  30. bin/
  31. tmp/
  32. *.tmp
  33. *.bak
  34. *.swp
  35. *~.nib
  36. local.properties
  37. .classpath
  38. .settings/
  39. .loadpath
  40. # External tool builders
  41. .externalToolBuilders/
  42. # Locally stored "Eclipse launch configurations"
  43. *.launch
  44. # CDT-specific
  45. .cproject
  46. # PDT-specific
  47. .buildpath
  48. #################
  49. ## Visual Studio
  50. #################
  51. ## Ignore Visual Studio temporary files, build results, and
  52. ## files generated by popular Visual Studio add-ons.
  53. # User-specific files
  54. *.suo
  55. *.user
  56. *.sln.docstates
  57. # Text-mode IDE tools
  58. cscope.out
  59. tags
  60. # Build results
  61. [Dd]ebug/
  62. [Dd]ebug CONSOLE/
  63. [Rr]elease/
  64. x64/
  65. [Bb]in/
  66. [Oo]bj/
  67. # MSTest test Results
  68. [Tt]est[Rr]esult*/
  69. [Bb]uild[Ll]og.*
  70. *_i.c
  71. *_p.c
  72. *.ilk
  73. *.meta
  74. *.obj
  75. *.pch
  76. *.pdb
  77. *.pgc
  78. *.pgd
  79. *.rsp
  80. *.sbr
  81. *.tlb
  82. *.tli
  83. *.tlh
  84. *.tmp
  85. *.tmp_proj
  86. *.log
  87. *.vspscc
  88. *.vssscc
  89. .builds
  90. *.pidb
  91. *.log
  92. *.scc
  93. # Visual C++ cache files
  94. ipch/
  95. *.aps
  96. *.ncb
  97. *.opensdf
  98. *.sdf
  99. *.cachefile
  100. *.VC.db
  101. *.VC.VC.opendb
  102. # Visual Studio profiler
  103. *.psess
  104. *.vsp
  105. *.vspx
  106. # Guidance Automation Toolkit
  107. *.gpState
  108. # ReSharper is a .NET coding add-in
  109. _ReSharper*/
  110. *.[Rr]e[Ss]harper
  111. # TeamCity is a build add-in
  112. _TeamCity*
  113. # DotCover is a Code Coverage Tool
  114. *.dotCover
  115. # NCrunch
  116. *.ncrunch*
  117. .*crunch*.local.xml
  118. # Installshield output folder
  119. [Ee]xpress/
  120. # DocProject is a documentation generator add-in
  121. DocProject/buildhelp/
  122. DocProject/Help/*.HxT
  123. DocProject/Help/*.HxC
  124. DocProject/Help/*.hhc
  125. DocProject/Help/*.hhk
  126. DocProject/Help/*.hhp
  127. DocProject/Help/Html2
  128. DocProject/Help/html
  129. # Click-Once directory
  130. publish/
  131. # Publish Web Output
  132. *.Publish.xml
  133. *.pubxml
  134. # NuGet Packages Directory
  135. ## TODO: If you have NuGet Package Restore enabled, uncomment the next line
  136. #packages/
  137. # Windows Azure Build Output
  138. csx
  139. *.build.csdef
  140. # Windows Store app package directory
  141. AppPackages/
  142. # Others
  143. sql/
  144. *.Cache
  145. ClientBin/
  146. [Ss]tyle[Cc]op.*
  147. ~$*
  148. *~
  149. *.dbmdl
  150. *.[Pp]ublish.xml
  151. *.pfx
  152. *.publishsettings
  153. # RIA/Silverlight projects
  154. Generated_Code/
  155. # Backup & report files from converting an old project file to a newer
  156. # Visual Studio version. Backup files are not needed, because we have git ;-)
  157. _UpgradeReport_Files/
  158. Backup*/
  159. UpgradeLog*.XML
  160. UpgradeLog*.htm
  161. # SQL Server files
  162. App_Data/*.mdf
  163. App_Data/*.ldf
  164. #############
  165. ## Windows detritus
  166. #############
  167. # Windows image file caches
  168. Thumbs.db
  169. ehthumbs.db
  170. # Folder config file
  171. Desktop.ini
  172. # Recycle Bin used on file shares
  173. $RECYCLE.BIN/
  174. # Mac crap
  175. .DS_Store
  176. #############
  177. ## Python
  178. #############
  179. *.py[co]
  180. # Packages
  181. *.egg
  182. *.egg-info
  183. dist/
  184. eggs/
  185. parts/
  186. var/
  187. sdist/
  188. develop-eggs/
  189. .installed.cfg
  190. # Installer logs
  191. pip-log.txt
  192. # Unit test / coverage reports
  193. .coverage
  194. .tox
  195. #Translations
  196. *.mo
  197. #Mr Developer
  198. .mr.developer.cfg
  199. ##########################
  200. ## Files created by tests
  201. ##########################
  202. requests.db
  203. ##########################
  204. ## Files created by ctags
  205. ##########################
  206. ?tags
  207. ?tags?
  208. ##########################
  209. ## Files created by autotools
  210. ##########################
  211. *.lo
  212. .libs
  213. ##########################
  214. ## Travis Build Dir
  215. ##########################
  216. ci/lua
  217. ##########################
  218. ## Conan test cache
  219. ##########################
  220. conan/test_package/build
  221. ##########################
  222. ## Visual Studio Code
  223. ##########################
  224. .vscode