.gitignore 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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. # Ignore wasm data in examples/
  53. examples/**/*.wasm
  54. examples/**/*.data
  55. examples/**/*.js
  56. examples/**/*.html
  57. # Ignore files build by xcode
  58. *.mode*v*
  59. *.pbxuser
  60. *.xcbkptlist
  61. *.xcscheme
  62. *.xcworkspacedata
  63. *.xcuserstate
  64. *.xccheckout
  65. xcschememanagement.plist
  66. .DS_Store
  67. ._.*
  68. xcuserdata/
  69. DerivedData/
  70. # VSCode project
  71. .vscode
  72. # Jetbrains project
  73. .idea/
  74. cmake-build-*/
  75. # CMake stuff
  76. CMakeCache.txt
  77. CMakeFiles
  78. CMakeScripts
  79. Testing
  80. cmake_install.cmake
  81. cmake_uninstall.cmake
  82. install_manifest.txt
  83. compile_commands.json
  84. CTestTestfile.cmake
  85. build
  86. # Ignore GNU global tags
  87. GPATH
  88. GRTAGS
  89. GTAGS
  90. # Zig programming language
  91. zig-cache/
  92. zig-out/
  93. build/
  94. build-*/
  95. docgen_tmp/
  96. # Parser stuff
  97. parser/raylib_parser