.gitignore 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. # Ignore generated files
  2. # ...
  3. # Ignore VIM's backup generated files
  4. *.swp
  5. *.swo
  6. *~
  7. # Ignore thumbnails created by windows
  8. Thumbs.db
  9. # Ignore files build by Visual Studio
  10. # *.obj --> Can be confused with 3d model!
  11. *.pdb
  12. *.aps
  13. *.user
  14. # *.vcproj
  15. # *.vcxproj*
  16. # *.sln
  17. *.vspscc
  18. *_i.c
  19. *.i
  20. *.icf
  21. *_p.c
  22. *.ncb
  23. *.suo
  24. *.tlb
  25. *.tlh
  26. *.bak
  27. *.cache
  28. *.ilk
  29. *.log
  30. .vs
  31. [Bb]in
  32. [Dd]ebug/
  33. *.sbr
  34. *.sdf
  35. obj/
  36. [R]elease/
  37. _ReSharper*/
  38. [Tt]est[Rr]esult*
  39. ipch/
  40. *.opensdf
  41. *.db
  42. *.opendb
  43. packages/
  44. !examples/models/resources/models/obj/
  45. # Ignore compiled binaries
  46. *.o
  47. *.exe
  48. *.a
  49. *.bc
  50. *.so
  51. *.so.*
  52. *.dll
  53. # Emscripten
  54. emsdk
  55. # Ignore wasm data in examples/
  56. examples/**/*.wasm
  57. examples/**/*.data
  58. examples/**/*.js
  59. examples/**/*.html
  60. # Ignore files build by xcode
  61. *.mode*v*
  62. *.pbxuser
  63. *.xcbkptlist
  64. *.xcscheme
  65. *.xcworkspacedata
  66. *.xcuserstate
  67. *.xccheckout
  68. xcschememanagement.plist
  69. .DS_Store
  70. ._.*
  71. xcuserdata/
  72. DerivedData/
  73. # VSCode project
  74. .vscode
  75. # Jetbrains project
  76. .idea/
  77. cmake-build-*/
  78. # CMake stuff
  79. CMakeCache.txt
  80. CMakeFiles
  81. CMakeScripts
  82. Testing
  83. cmake_install.cmake
  84. cmake_uninstall.cmake
  85. install_manifest.txt
  86. compile_commands.json
  87. CTestTestfile.cmake
  88. build
  89. # Ignore GNU global tags
  90. GPATH
  91. GRTAGS
  92. GTAGS
  93. # Zig programming language
  94. .zig-cache/
  95. zig-cache/
  96. zig-out/
  97. build/
  98. build-*/
  99. docgen_tmp/
  100. # Parser stuff
  101. parser/raylib_parser