Skip to content

Commit 70324f6

Browse files
committed
add git ignore file
1 parent 14a69c8 commit 70324f6

File tree

1 file changed

+90
-0
lines changed

1 file changed

+90
-0
lines changed

.gitignore

Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
# Compiled Object files
2+
*.slo
3+
*.lo
4+
*.o
5+
*.obj
6+
7+
# Precompiled Headers
8+
*.gch
9+
*.pch
10+
11+
# Compiled Dynamic libraries
12+
*.so
13+
*.dylib
14+
*.dll
15+
16+
# Compiled Static libraries
17+
*.lai
18+
*.la
19+
*.a
20+
*.lib
21+
22+
# Executables
23+
*.exe
24+
*.out
25+
*.app
26+
27+
# Qt
28+
object_script.*.Release
29+
object_script.*.Debug
30+
*_plugin_import.cpp
31+
/.qmake.cache
32+
/.qmake.stash
33+
*.pro.user
34+
*.pro.user.*
35+
*.qbs.user
36+
*.qbs.user.*
37+
*.moc
38+
moc_*.cpp
39+
moc_*.h
40+
qrc_*.cpp
41+
ui_*.h
42+
*.qmlc
43+
*.jsc
44+
Makefile*
45+
*build-*
46+
47+
# CMake
48+
CMakeLists.txt.user
49+
CMakeLists.txt.user*
50+
CMakeCache.txt
51+
CMakeFiles
52+
CMakeScripts
53+
Testing
54+
Makefile
55+
cmake_install.cmake
56+
install_manifest.txt
57+
compile_commands.json
58+
CTestTestfile.cmake
59+
_deps
60+
61+
# QtCreator
62+
*.autosave
63+
*.qmlproject.user
64+
*.qmlproject.user.*
65+
compile_commands.json
66+
*creator.user*
67+
68+
# macOS/Windows
69+
.DS_Store
70+
Thumbs.db
71+
*.lnk
72+
73+
# patch/diff
74+
*.orig
75+
*.rej
76+
*.patch
77+
*.diff
78+
79+
# vim
80+
*~
81+
82+
# Visual Studio Code
83+
.vscode/*
84+
85+
# Doxygen
86+
doxygen/html/*
87+
doxygen.log
88+
89+
# Backup files
90+
*.bak

0 commit comments

Comments
 (0)