.gitignore 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. # Build directories
  2. Build/
  3. *-Build/
  4. # Output directories
  5. Bin/*
  6. !Bin/**/
  7. !Bin/*.bat
  8. !Bin/*.sh
  9. Bin/*.app/
  10. Bin/*.app.dSYM/
  11. Bin/Data/LuaScripts/jit/
  12. Bin/Screenshots
  13. *-Bin/
  14. Lib/
  15. *-Lib/
  16. # Compiled shaders
  17. *.vs2
  18. *.vs3
  19. *.ps2
  20. *.ps3
  21. # Compiled AngelScript
  22. *.asc
  23. # Compiled Lua script
  24. *.luc
  25. # Generated documentation
  26. Docs/html/
  27. Docs/qch/
  28. Docs/Doxyfile
  29. Docs/minimal-*
  30. # Eclipse project settings
  31. Source/.*project
  32. Source/.settings
  33. # KDevelop project settings
  34. *.kdev?
  35. # Qt Creator project settings
  36. Source/CMakeLists.txt.user
  37. # Android in-the-source project settings
  38. Source/Android/project.properties
  39. Source/Android/local.properties
  40. Source/Android/proguard-project.txt
  41. # Android in-the-source build and output directories
  42. Source/Android/Engine
  43. Source/Android/ThirdParty
  44. Source/Android/libs
  45. # Android in-the-source CMake build files
  46. CMakeCache.txt
  47. CMakeFiles/
  48. CMakeScripts/
  49. Makefile
  50. cmake_install.cmake
  51. install_manifest.txt
  52. # GCC PCH files that are some-how ending up in the Source tree instead of the Build directory
  53. *.gch
  54. # Misc.
  55. configure*
  56. *~
  57. *.swp
  58. .DS_Store
  59. *.log
  60. *.bak
  61. Thumbs.db