.gitignore 794 B

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