Skip to content

Commit dd64ec8

Browse files
committed
copied from Patreon
0 parents  commit dd64ec8

File tree

1,961 files changed

+385551
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,961 files changed

+385551
-0
lines changed

.gitignore

Lines changed: 216 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,216 @@
1+
2+
# Created by https://www.gitignore.io/api/c,qt,c++,linux,macos,windows,qtcreator
3+
# Edit at https://www.gitignore.io/?templates=c,qt,c++,linux,macos,windows,qtcreator
4+
5+
### C ###
6+
# Prerequisites
7+
*.d
8+
9+
# Object files
10+
*.o
11+
*.ko
12+
*.obj
13+
*.elf
14+
15+
# Linker output
16+
*.ilk
17+
*.map
18+
*.exp
19+
20+
# Precompiled Headers
21+
*.gch
22+
*.pch
23+
24+
# Libraries
25+
*.lib
26+
*.a
27+
*.la
28+
*.lo
29+
30+
# Shared objects (inc. Windows DLLs)
31+
*.dll
32+
*.so
33+
*.so.*
34+
*.dylib
35+
36+
# Executables
37+
*.exe
38+
*.out
39+
*.app
40+
*.i*86
41+
*.x86_64
42+
*.hex
43+
44+
# Debug files
45+
*.dSYM/
46+
*.su
47+
*.idb
48+
*.pdb
49+
50+
# Kernel Module Compile Results
51+
*.mod*
52+
*.cmd
53+
.tmp_versions/
54+
modules.order
55+
Module.symvers
56+
Mkfile.old
57+
dkms.conf
58+
59+
### C++ ###
60+
# Prerequisites
61+
62+
# Compiled Object files
63+
*.slo
64+
65+
# Precompiled Headers
66+
67+
# Compiled Dynamic libraries
68+
69+
# Fortran module files
70+
*.mod
71+
*.smod
72+
73+
# Compiled Static libraries
74+
*.lai
75+
76+
# Executables
77+
78+
### Linux ###
79+
*~
80+
81+
# temporary files which can be created if a process still has a handle open of a deleted file
82+
.fuse_hidden*
83+
84+
# KDE directory preferences
85+
.directory
86+
87+
# Linux trash folder which might appear on any partition or disk
88+
.Trash-*
89+
90+
# .nfs files are created when an open file is removed but is still being accessed
91+
.nfs*
92+
93+
### macOS ###
94+
# General
95+
.DS_Store
96+
.AppleDouble
97+
.LSOverride
98+
99+
# Icon must end with two \r
100+
Icon
101+
102+
# Thumbnails
103+
._*
104+
105+
# Files that might appear in the root of a volume
106+
.DocumentRevisions-V100
107+
.fseventsd
108+
.Spotlight-V100
109+
.TemporaryItems
110+
.Trashes
111+
.VolumeIcon.icns
112+
.com.apple.timemachine.donotpresent
113+
114+
# Directories potentially created on remote AFP share
115+
.AppleDB
116+
.AppleDesktop
117+
Network Trash Folder
118+
Temporary Items
119+
.apdisk
120+
121+
### Qt ###
122+
# C++ objects and libs
123+
124+
# Qt-es
125+
object_script.*.Release
126+
object_script.*.Debug
127+
*_plugin_import.cpp
128+
/.qmake.cache
129+
/.qmake.stash
130+
*.pro.user
131+
*.pro.user.*
132+
*.qbs.user
133+
*.qbs.user.*
134+
*.moc
135+
moc_*.cpp
136+
moc_*.h
137+
qrc_*.cpp
138+
ui_*.h
139+
*.qmlc
140+
*.jsc
141+
Makefile*
142+
*build-*
143+
144+
# Qt unit tests
145+
target_wrapper.*
146+
147+
# QtCreator
148+
*.autosave
149+
150+
# QtCreator Qml
151+
*.qmlproject.user
152+
*.qmlproject.user.*
153+
154+
# QtCreator CMake
155+
CMakeLists.txt.user*
156+
157+
# QtCreator 4.8< compilation database
158+
compile_commands.json
159+
160+
# QtCreator local machine specific files for imported projects
161+
*creator.user*
162+
163+
### QtCreator ###
164+
# gitignore for Qt Creator like IDE for pure C/C++ project without Qt
165+
#
166+
# Reference: http://doc.qt.io/qtcreator/creator-project-generic.html
167+
168+
169+
170+
# Qt Creator autogenerated files
171+
172+
173+
# A listing of all the files included in the project
174+
*.files
175+
176+
# Include directories
177+
*.includes
178+
179+
# Project configuration settings like predefined Macros
180+
*.config
181+
182+
# Qt Creator settings
183+
*.creator
184+
185+
# User project settings
186+
*.creator.user*
187+
188+
# Qt Creator backups
189+
190+
### Windows ###
191+
# Windows thumbnail cache files
192+
Thumbs.db
193+
Thumbs.db:encryptable
194+
ehthumbs.db
195+
ehthumbs_vista.db
196+
197+
# Dump file
198+
*.stackdump
199+
200+
# Folder config file
201+
[Dd]esktop.ini
202+
203+
# Recycle Bin used on file shares
204+
$RECYCLE.BIN/
205+
206+
# Windows Installer files
207+
*.cab
208+
*.msi
209+
*.msix
210+
*.msm
211+
*.msp
212+
213+
# Windows shortcuts
214+
*.lnk
215+
216+
# End of https://www.gitignore.io/api/c,qt,c++,linux,macos,windows,qtcreator

0 commit comments

Comments
 (0)