.gitignore 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. # The canonical out-of-tree build subdirectory
  2. build
  3. build-*
  4. # Visual Studio clutter
  5. _ReSharper*
  6. *.sdf
  7. *.suo
  8. *.dir
  9. *.vcxproj*
  10. *.sln
  11. .vs
  12. CMakeSettings.json
  13. Win32
  14. x64
  15. Debug
  16. Release
  17. MinSizeRel
  18. RelWithDebInfo
  19. *.opensdf
  20. # Xcode clutter
  21. GLFW.build
  22. GLFW.xcodeproj
  23. # macOS clutter
  24. .DS_Store
  25. # Makefile generator clutter
  26. Makefile
  27. # Ninja generator clutter
  28. build.ninja
  29. rules.ninja
  30. .ninja_deps
  31. .ninja_log
  32. # CMake clutter
  33. CMakeCache.txt
  34. CMakeFiles
  35. CMakeScripts
  36. CMakeDoxyfile.in
  37. CMakeDoxygenDefaults.cmake
  38. cmake_install.cmake
  39. cmake_uninstall.cmake
  40. # Generated files
  41. docs/Doxyfile
  42. docs/html
  43. docs/warnings.txt
  44. docs/doxygen_sqlite3.db
  45. src/glfw_config.h
  46. src/glfw3.pc
  47. src/glfw3Config.cmake
  48. src/glfw3ConfigVersion.cmake
  49. # Compiled binaries
  50. src/libglfw.so
  51. src/libglfw.so.3
  52. src/libglfw.so.3.5
  53. src/libglfw.dylib
  54. src/libglfw.dylib
  55. src/libglfw.3.dylib
  56. src/libglfw.3.5.dylib
  57. src/libglfw3.a
  58. src/glfw3.lib
  59. src/glfw3.dll
  60. src/glfw3dll.lib
  61. src/libglfw3dll.a
  62. examples/*.app
  63. examples/*.exe
  64. examples/boing
  65. examples/gears
  66. examples/heightmap
  67. examples/offscreen
  68. examples/particles
  69. examples/splitview
  70. examples/sharing
  71. examples/triangle-opengl
  72. examples/wave
  73. examples/windows
  74. tests/*.app
  75. tests/*.exe
  76. tests/clipboard
  77. tests/cursor
  78. tests/empty
  79. tests/events
  80. tests/gamma
  81. tests/glfwinfo
  82. tests/icon
  83. tests/iconify
  84. tests/inputlag
  85. tests/joysticks
  86. tests/monitors
  87. tests/msaa
  88. tests/reopen
  89. tests/tearing
  90. tests/threads
  91. tests/timeout
  92. tests/title
  93. tests/triangle-vulkan
  94. tests/window
  95. tests/windows