.gitignore 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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. # JetBrains IDE project settings
  54. /.idea/
  55. /cmake-build-*/
  56. *.iml
  57. # Code::Blocks project settings
  58. /*.cbp
  59. # Codelite project settings
  60. /*.project
  61. /*.workspace
  62. # Gradle project settings
  63. .gradle
  64. # Android project settings
  65. /local.properties
  66. # Visual Studio project settings
  67. /.vs/
  68. /CMakeSettings.json
  69. /out/
  70. # CMake generated build files
  71. CMakeCache.txt
  72. CMakeFiles/
  73. CMakeScripts/
  74. Makefile
  75. cmake_install.cmake
  76. install_manifest.txt
  77. CPackConfig.cmake
  78. CPackSourceConfig.cmake
  79. CTestTestfile.cmake
  80. /Source/**/*.cmake
  81. !/Source/ThirdParty/SDL/cmake/*.cmake
  82. !/Source/ThirdParty/SDL/include/*cmake
  83. !/Source/ThirdParty/Assimp/cmake-modules/*cmake
  84. /Docs/**/*.cmake
  85. # Precompiled header files
  86. *.gch/
  87. *.pch/
  88. *.pch.*
  89. # Custom rake tasks
  90. /.rake/
  91. .rake_t_cache
  92. # Misc.
  93. configure*
  94. *~
  95. *.swp
  96. .DS_Store
  97. *.log
  98. *.bak
  99. Thumbs.db
  100. .directory
  101. # Doxygen mess from absence of 'dot' dependency
  102. CMakeDoxyFile.in
  103. CMakeDoxygenDefaults.cmake