.gitignore 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. # Build directories
  2. build/
  3. _build/
  4. bin/
  5. lib/
  6. obj/
  7. # Prerequisites
  8. *.d
  9. # Compiled Object files
  10. *.slo
  11. *.lo
  12. *.o
  13. *.obj
  14. # Precompiled Headers
  15. *.gch
  16. *.pch
  17. # Compiled Dynamic libraries
  18. *.so
  19. *.dylib
  20. *.dll
  21. # Fortran module files
  22. *.mod
  23. *.smod
  24. # Compiled Static libraries
  25. *.lai
  26. *.la
  27. *.a
  28. *.lib
  29. # Executables
  30. *.exe
  31. *.out
  32. *.app
  33. minesweeper
  34. # CMake and build system
  35. CMakeCache.txt
  36. CMakeFiles/
  37. cmake_install.cmake
  38. compile_commands.json
  39. Makefile
  40. meson.build.user
  41. meson-build/
  42. meson-logs/
  43. meson-private/
  44. # IDE and text editor files
  45. .vscode/
  46. .idea/
  47. *.kdev4
  48. .kdev4/
  49. # Emacs files
  50. *~
  51. \#*\#
  52. /.emacs.desktop
  53. /.emacs.desktop.lock
  54. *.elc
  55. auto-save-list
  56. tramp
  57. .\#*
  58. # Emacs directory configuration
  59. .dir-locals.el
  60. # Emacs backup files
  61. *~
  62. # Emacs org-mode
  63. .org-id-locations
  64. *_archive
  65. # Emacs flymake
  66. *_flymake*
  67. # Emacs eshell files
  68. /eshell/history
  69. /eshell/lastdir
  70. # Emacs elpa packages
  71. /elpa/
  72. # Emacs projectile files
  73. .projectile
  74. # macOS specific
  75. .DS_Store
  76. .AppleDouble
  77. .LSOverride
  78. Icon
  79. # Thumbnails
  80. ._*
  81. # Files that might appear in the root of a volume
  82. .DocumentRevisions-V100
  83. .fseventsd
  84. .Spotlight-V100
  85. .TemporaryItems
  86. .Trashes
  87. .VolumeIcon.icns
  88. .com.apple.timemachine.donotpresent
  89. # Directories potentially created on remote AFP share
  90. .AppleDB
  91. .AppleDesktop
  92. Network Trash Folder
  93. Temporary Items
  94. .apdisk
  95. # Linux specific
  96. *~
  97. .fuse_hidden*
  98. .directory
  99. .Trash-*
  100. .nfs*
  101. # Windows specific
  102. Thumbs.db
  103. Thumbs.db:encryptable
  104. ehthumbs.db
  105. ehthumbs_vista.db
  106. *.stackdump
  107. [Dd]esktop.ini
  108. $RECYCLE.BIN/
  109. *.cab
  110. *.msi
  111. *.msix
  112. *.msm
  113. *.msp
  114. *.lnk
  115. # Project specific
  116. .gresource
  117. *.gresource
  118. # Leaderboard and config files
  119. .config/minesweeper/
  120. #MacOS files
  121. .cache/
  122. .DS_Store