| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- # Build directories
- build/
- _build/
- bin/
- lib/
- obj/
- # Prerequisites
- *.d
- # Compiled Object files
- *.slo
- *.lo
- *.o
- *.obj
- # Precompiled Headers
- *.gch
- *.pch
- # Compiled Dynamic libraries
- *.so
- *.dylib
- *.dll
- # Fortran module files
- *.mod
- *.smod
- # Compiled Static libraries
- *.lai
- *.la
- *.a
- *.lib
- # Executables
- *.exe
- *.out
- *.app
- minesweeper
- # CMake and build system
- CMakeCache.txt
- CMakeFiles/
- cmake_install.cmake
- compile_commands.json
- Makefile
- meson.build.user
- meson-build/
- meson-logs/
- meson-private/
- # IDE and text editor files
- .vscode/
- .idea/
- *.kdev4
- .kdev4/
- # Emacs files
- *~
- \#*\#
- /.emacs.desktop
- /.emacs.desktop.lock
- *.elc
- auto-save-list
- tramp
- .\#*
- # Emacs directory configuration
- .dir-locals.el
- # Emacs backup files
- *~
- # Emacs org-mode
- .org-id-locations
- *_archive
- # Emacs flymake
- *_flymake*
- # Emacs eshell files
- /eshell/history
- /eshell/lastdir
- # Emacs elpa packages
- /elpa/
- # Emacs projectile files
- .projectile
- # macOS specific
- .DS_Store
- .AppleDouble
- .LSOverride
- Icon
- # Thumbnails
- ._*
- # Files that might appear in the root of a volume
- .DocumentRevisions-V100
- .fseventsd
- .Spotlight-V100
- .TemporaryItems
- .Trashes
- .VolumeIcon.icns
- .com.apple.timemachine.donotpresent
- # Directories potentially created on remote AFP share
- .AppleDB
- .AppleDesktop
- Network Trash Folder
- Temporary Items
- .apdisk
- # Linux specific
- *~
- .fuse_hidden*
- .directory
- .Trash-*
- .nfs*
- # Windows specific
- Thumbs.db
- Thumbs.db:encryptable
- ehthumbs.db
- ehthumbs_vista.db
- *.stackdump
- [Dd]esktop.ini
- $RECYCLE.BIN/
- *.cab
- *.msi
- *.msix
- *.msm
- *.msp
- *.lnk
- # Project specific
- .gresource
- *.gresource
- # Leaderboard and config files
- .config/minesweeper/
- #MacOS files
- .cache/
- .DS_Store
|