-
Notifications
You must be signed in to change notification settings - Fork 7
/
.gitignore
47 lines (39 loc) · 976 Bytes
/
.gitignore
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
# Ignore the prod/release output directories
/Output
# Ignore CQC's CQCData directory
/CQCData
# Ignore Visual Studio (and Code) stuff
/.vscode
.vs/
# In dev mode we redirect macros and templates to the source
# tree because we have shipped content of those types and need
# them under source control. But it's only System content, we
# want to ignroe any per-user stuff.
/Source/AllProjects/Macros/User/*
/Source/AllProjects/Interfaces/User/*
# Ignore any thumbs files
Thumbs.db
thumbs.db
# Ignore the generated message, error, and resource id headers
*_MessageIds.hpp
*_ErrorIds.hpp
*_ResourceIds.hpp
#
# Ignore any save directories we create for temporary saving of files
# before trying changes, and any temp text files.
#
**/Save/
**/Save[0-9]*/
tmp.txt
tmp.Txt
Tmp.txt
Tmp.Txt
#
# In a couple small instances we may build in place, for some small tests
# and such. Otherwise these are all in the ignored output directories above.
#
*.obj
*.pdb
*.sln
*.exe
*.dll