.gitignore 3.8 KB

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