major refactor
This commit is contained in:
122
.gitignore
vendored
122
.gitignore
vendored
@@ -1,4 +1,13 @@
|
||||
# ---> C++
|
||||
# Build directories
|
||||
build/
|
||||
_build/
|
||||
bin/
|
||||
lib/
|
||||
obj/
|
||||
|
||||
# Prerequisites
|
||||
*.d
|
||||
|
||||
# Compiled Object files
|
||||
*.slo
|
||||
*.lo
|
||||
@@ -16,6 +25,7 @@
|
||||
|
||||
# Fortran module files
|
||||
*.mod
|
||||
*.smod
|
||||
|
||||
# Compiled Static libraries
|
||||
*.lai
|
||||
@@ -27,6 +37,112 @@
|
||||
*.exe
|
||||
*.out
|
||||
*.app
|
||||
minesweeper
|
||||
|
||||
# Backup files
|
||||
*~
|
||||
# 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
|
||||
|
||||
Reference in New Issue
Block a user