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