.gitignore 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. # Output directories
  2. /bin/*
  3. !/bin/**/
  4. !/bin/*.bat
  5. !/bin/*.sh
  6. /bin/*.app/
  7. /bin/*.app.dSYM/
  8. /bin/jit/
  9. /bin/Screenshots/
  10. /bin/tool/
  11. /include/
  12. /lib*/
  13. generated/
  14. /Source/Urho3D/tolua++-prefix/
  15. # Output files
  16. /Source/**/*.a
  17. /Source/ThirdParty/LuaJIT/src/host/buildvm
  18. /Source/ThirdParty/LuaJIT/src/host/buildvm_arch.h
  19. /Source/ThirdParty/LuaJIT/src/host/minilua
  20. /Source/Urho3D/Precompiled.cpp
  21. /Source/Urho3D/Urho3D.h
  22. /Source/Urho3D/Urho3D.pc
  23. /Source/Urho3D/Urho3D.pc.msvc
  24. /Source/Urho3D/Urho3DAll.h
  25. /Source/Urho3D/librevision.h
  26. # Compiled shaders
  27. *.vs?
  28. *.ps?
  29. # Compiled AngelScript
  30. *.asc
  31. # Compiled Lua script
  32. *.luc
  33. # Generated documentation
  34. /Docs/html/
  35. /Docs/qch/
  36. # Eclipse project settings
  37. /.*project
  38. /.settings
  39. # KDevelop project settings
  40. /*.kdev?
  41. # Qt Creator project settings
  42. /CMakeLists.txt.user
  43. # JetBrains IDE project settings
  44. /.idea/
  45. # Code::Blocks project settings
  46. /*.cbp
  47. # Codelite project settings
  48. /*.project
  49. /*.workspace
  50. # Android project settings
  51. /Android/local.properties
  52. # Android output directories
  53. /Android/Urho3D/
  54. /Android/ThirdParty/
  55. /Android/libs/
  56. # CMake generated build files
  57. CMakeCache.txt
  58. CMakeFiles/
  59. CMakeScripts/
  60. Makefile
  61. cmake_install.cmake
  62. install_manifest.txt
  63. CPackConfig.cmake
  64. CPackSourceConfig.cmake
  65. CTestTestfile.cmake
  66. /Source/**/*.cmake
  67. !/Source/ThirdParty/SDL/cmake/*.cmake
  68. /Docs/**/*.cmake
  69. # Precompiled header files
  70. *.gch/
  71. *.pch/
  72. *.pch.*
  73. # Custom rake tasks
  74. /.rake/
  75. .rake_t_cache
  76. # Misc.
  77. configure*
  78. *~
  79. *.swp
  80. .DS_Store
  81. *.log
  82. *.bak
  83. Thumbs.db
  84. .directory