.gitignore 2.0 KB

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