.gitignore 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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. /cmake-build-*/
  46. # Code::Blocks project settings
  47. /*.cbp
  48. # Codelite project settings
  49. /*.project
  50. /*.workspace
  51. # Android project settings
  52. /Android/local.properties
  53. # Android output directories
  54. /Android/Urho3D/
  55. /Android/ThirdParty/
  56. /Android/libs/
  57. # CMake generated build files
  58. CMakeCache.txt
  59. CMakeFiles/
  60. CMakeScripts/
  61. Makefile
  62. cmake_install.cmake
  63. install_manifest.txt
  64. CPackConfig.cmake
  65. CPackSourceConfig.cmake
  66. CTestTestfile.cmake
  67. /Source/**/*.cmake
  68. !/Source/ThirdParty/SDL/cmake/*.cmake
  69. !/Source/ThirdParty/SDL/include/*cmake
  70. /Docs/**/*.cmake
  71. # Precompiled header files
  72. *.gch/
  73. *.pch/
  74. *.pch.*
  75. # Custom rake tasks
  76. /.rake/
  77. .rake_t_cache
  78. # Misc.
  79. configure*
  80. *~
  81. *.swp
  82. .DS_Store
  83. *.log
  84. *.bak
  85. Thumbs.db
  86. .directory