.gitignore 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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. build/
  16. /captures/
  17. .cxx/
  18. # Output files
  19. /Source/**/*.a
  20. /Source/ThirdParty/Assimp/revision.h
  21. /Source/ThirdParty/Assimp/contrib/zlib/zconf.h
  22. /Source/ThirdParty/Assimp/include/assimp/config.h
  23. /Source/ThirdParty/LuaJIT/src/host/buildvm
  24. /Source/ThirdParty/LuaJIT/src/host/buildvm_arch.h
  25. /Source/ThirdParty/LuaJIT/src/host/minilua
  26. /Source/Urho3D/Precompiled.cpp
  27. /Source/Urho3D/Urho3D.h
  28. /Source/Urho3D/Urho3D.pc
  29. /Source/Urho3D/Urho3D.pc.msvc
  30. /Source/Urho3D/Urho3DAll.h
  31. /Source/Urho3D/librevision.h
  32. # Compiled shaders
  33. *.vs?
  34. *.ps?
  35. # Compiled AngelScript
  36. *.asc
  37. # Compiled Lua script
  38. *.luc
  39. # Generated documentation
  40. /Docs/html/
  41. /Docs/qch/
  42. # Saved sample scenes
  43. /bin/Data/Scenes/Isometric2D.xml
  44. /bin/Data/Scenes/Platformer2D.xml
  45. # Eclipse project settings
  46. /.*project
  47. /.settings
  48. # KDevelop project settings
  49. /*.kdev?
  50. # Qt Creator project settings
  51. /CMakeLists.txt.user
  52. # JetBrains IDE project settings
  53. /.idea/
  54. /cmake-build-*/
  55. *.iml
  56. # Code::Blocks project settings
  57. /*.cbp
  58. # Codelite project settings
  59. /*.project
  60. /*.workspace
  61. # Gradle project settings
  62. .gradle
  63. # Android project settings
  64. /local.properties
  65. # CMake generated build files
  66. CMakeCache.txt
  67. CMakeFiles/
  68. CMakeScripts/
  69. Makefile
  70. cmake_install.cmake
  71. install_manifest.txt
  72. CPackConfig.cmake
  73. CPackSourceConfig.cmake
  74. CTestTestfile.cmake
  75. /Source/**/*.cmake
  76. !/Source/ThirdParty/SDL/cmake/*.cmake
  77. !/Source/ThirdParty/SDL/include/*cmake
  78. !/Source/ThirdParty/Assimp/cmake-modules/*cmake
  79. /Docs/**/*.cmake
  80. # Precompiled header files
  81. *.gch/
  82. *.pch/
  83. *.pch.*
  84. # Custom rake tasks
  85. /.rake/
  86. .rake_t_cache
  87. # Misc.
  88. configure*
  89. *~
  90. *.swp
  91. .DS_Store
  92. *.log
  93. *.bak
  94. Thumbs.db
  95. .directory