.gitignore 858 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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/
  13. Lib/
  14. *-Lib/
  15. # Compiled shaders
  16. *.vs2
  17. *.vs3
  18. *.ps2
  19. *.ps3
  20. # Compiled AngelScript
  21. *.asc
  22. # Compiled Lua script
  23. *.luc
  24. # Generated documentation
  25. Docs/html/
  26. Docs/Doxyfile
  27. Docs/minimal-*
  28. # Eclipse project settings
  29. Source/.*project
  30. Source/.settings
  31. # Android in-the-source project settings
  32. Source/Android/project.properties
  33. Source/Android/local.properties
  34. Source/Android/proguard-project.txt
  35. # Android in-the-source build and output directories
  36. Source/Android/Engine
  37. Source/Android/ThirdParty
  38. Source/Android/libs
  39. # Android in-the-source CMake build files
  40. CMakeCache.txt
  41. CMakeFiles/
  42. CMakeScripts/
  43. Makefile
  44. cmake_install.cmake
  45. install_manifest.txt
  46. # Misc.
  47. configure*
  48. *~
  49. *.swp
  50. .DS_Store
  51. *.log
  52. *.bak
  53. Thumbs.db