Remove unnecessary file
[staging/HomeScreen.git] / .gitignore
1 # manually added:
2 .DS_Store
3
4 # Created by https://www.gitignore.io/api/linux,qt,c,c++
5
6 ### Linux ###
7 *~
8
9 # temporary files which can be created if a process still has a handle open of a deleted file
10 .fuse_hidden*
11
12 # KDE directory preferences
13 .directory
14
15 # Linux trash folder which might appear on any partition or disk
16 .Trash-*
17
18
19 ### Qt ###
20 # C++ objects and libs
21
22 *.slo
23 *.lo
24 *.o
25 *.a
26 *.la
27 *.lai
28 *.so
29 *.dll
30 *.dylib
31
32 # Qt-es
33
34 /.qmake.cache
35 /.qmake.stash
36 *.pro.user
37 *.pro.user.*
38 *.qbs.user
39 *.qbs.user.*
40 *.moc
41 moc_*.cpp
42 qrc_*.cpp
43 ui_*.h
44 Makefile*
45 *build-*
46
47 # QtCreator
48
49 *.autosave
50
51 # QtCtreator Qml
52 *.qmlproject.user
53 *.qmlproject.user.*
54
55 # QtCtreator CMake
56 CMakeLists.txt.user
57
58
59
60 ### C ###
61 # Object files
62 *.o
63 *.ko
64 *.obj
65 *.elf
66
67 # Precompiled Headers
68 *.gch
69 *.pch
70
71 # Libraries
72 *.lib
73 *.a
74 *.la
75 *.lo
76
77 # Shared objects (inc. Windows DLLs)
78 *.dll
79 *.so
80 *.so.*
81 *.dylib
82
83 # Executables
84 *.exe
85 *.out
86 *.app
87 *.i*86
88 *.x86_64
89 *.hex
90
91 # Debug files
92 *.dSYM/
93
94
95 ### C++ ###
96 # Compiled Object files
97 *.slo
98 *.lo
99 *.o
100 *.obj
101
102 # Precompiled Headers
103 *.gch
104 *.pch
105
106 # Compiled Dynamic libraries
107 *.so
108 *.dylib
109 *.dll
110
111 # Fortran module files
112 *.mod
113
114 # Compiled Static libraries
115 *.lai
116 *.la
117 *.a
118 *.lib
119
120 # Executables
121 *.exe
122 *.out
123 *.app
124
125