-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.gitignore
More file actions
57 lines (45 loc) · 899 Bytes
/
.gitignore
File metadata and controls
57 lines (45 loc) · 899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# This is the gitignore file.
#
# This file allows us to list files that we do not want tracked by the repository.
#
# In repository we don't need to have:
#
#For testing
tst/*
!tst/serial_app_tst/
!tst/serial_app_tst/*
#Ignore documentation
doc/*
# Compiled object files
*.o
*.so
# Generated MOC, resource and UI files
moc_*.cpp
qrc_*.cpp
ui_*.h
# Editors temporary files
*~
# Custom user settings for QT Creator
*.user
*.user.*
*.autosave
# Debug and Release directories (created under Windows, not Linux)
Debug/
Release/
debug/
release/
# .log files (usually created by QtTest - thanks to VestniK)
*.log
# Built windows .exe and linux binaries
*.exe
*.dll
# This is the name of executeable
serial_app
# OS generated files #
# Windows-specific files
Thumbs.db
ehthumbs.db
desktop.ini
# Mac-specific things
.DS_Store
.DS_Store*