forked from NeotokyoRebuild/neo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
220 lines (190 loc) · 4.21 KB
/
.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
# Files to ignore when considering what GIT should commit.
# Qt Creator
mp/build-src-*
# CMake build dir
mp/src/build
out
mp/src/CMakeSettings.json
# Possible symlink for fixing tools that hardcode "game/mod_hl2mp" - we use "game/neo".
mp/game/mod_hl2mp
mp/game/neo/screenshots
# Binary Assets
mp/game/neo/maps
mp/game/neo/mapsrc
mp/game/neo/materials
mp/game/neo/particles
mp/game/neo/shaders
mp/game/neo/models
# Any debug or user specific configs that shouldn't be pushed
mp/game/neo/cfg/config.cfg
mp/game/neo/cfg/rain.cfg
# Shader state debug image dumps
mp/game/neo/*.tga
# Map compile artifacts
mp/game/neo/mapsrc/*.bsp
mp/game/neo/mapsrc/*.prt
mp/game/neo/mapsrc/*.vmx
# Object files
*.o
*.p
# Emacs style backup files
*~
# Git for Windows editor crash
*.exe.stackdump
# VSCode
*.vscode/
# Visual Studio
*.suo
*.user
*.sln.docstates
*.obj
*.pch
*.tlog
*.log
*.scc
*.exp
*.ilk
*.lastbuildstate
vc100.pdb
ipch
*.sdf
*.opensdf
*.idb
*.vcxproj
*.sln
*.vcxproj.filters
*.vcxproj.vpc_crc
*.vpc.sentinel
*.rsp
.vs/
Degub/
Release/
mp/src/fgdlib/Debug/
mp/src/fgdlib/Release/
mp/src/game/client/Debug_neo/
mp/src/game/client/Release_neo/
mp/src/game/server/Debug_neo/
mp/src/game/server/Release_neo/
mp/src/materialsystem/stdshaders/Debug_dx9_neo/
mp/src/materialsystem/stdshaders/Release_dx9_neo/
mp/src/mathlib/Debug/
mp/src/mathlib/Release/
mp/src/raytrace/Debug/
mp/src/raytrace/Release/
mp/src/tier1/Debug/
mp/src/tier1/Release/
mp/src/utils/captioncompiler/Debug/
mp/src/utils/captioncompiler/Release/
mp/src/utils/glview/Debug/
mp/src/utils/glview/Release/
mp/src/utils/height2normal/Debug/
mp/src/utils/height2normal/Release/
mp/src/utils/motionmapper/Debug/
mp/src/utils/motionmapper/Release/
mp/src/utils/phonemeextractor/Debug/
mp/src/utils/phonemeextractor/Release/
mp/src/utils/qc_eyes/Debug/
mp/src/utils/qc_eyes/Release/
mp/src/utils/serverplugin_sample/Debug/
mp/src/utils/serverplugin_sample/Release/
mp/src/utils/tgadiff/Debug/
mp/src/utils/tgadiff/Release/
mp/src/utils/vbsp/Debug/
mp/src/utils/vbsp/Release/
mp/src/utils/vice/Debug/
mp/src/utils/vice/Release/
mp/src/utils/vrad/Debug/
mp/src/utils/vrad/Release/
mp/src/utils/vrad_launcher/Debug/
mp/src/utils/vrad_launcher/Release/
mp/src/utils/vtf2tga/Debug/
mp/src/utils/vtf2tga/Release/
mp/src/utils/vtfdiff/Debug/
mp/src/utils/vtfdiff/Release/
mp/src/utils/vvis/Debug/
mp/src/utils/vvis/Release/
mp/src/utils/vvis_launcher/Debug/
mp/src/utils/vvis_launcher/Release/
mp/src/vgui2/vgui_controls/Debug/
mp/src/vgui2/vgui_controls/Release/
# Speech SDK API
sapi51/
# OSX/Linux build products
*.mak
*.mak.vpc_crc
*.xcodeproj/
obj*/
!devtools/*.mak
!utils/smdlexp/smdlexp.mak
# QT Creator project generated files
*.cflags
*.config
*.creator
*.cxxflags
*.files
*.includes
# Intel utilities
VTune\ Profiler\ Results/
# Specific Source build products
bin
*.project
client.pdb
client.dll
client.lib
server.pdb
server.dll
server.lib
vgui_controls.lib
fgdlib.lib
tier1.lib
mathlib.lib
raytrace.lib
client.so
client.so.dbg
server.so
server.so.dbg
server_srv.so
server_srv.so.dbg
client.dylib
client.dylib.dSYM/
server.dylib
server.dylib.dSYM/
# files generated by running a mod
config.cfg
voice_ban.dt
stats.txt
*.cache
glshaders.cfg
server_blacklist.txt
videoconfig_linux.cfg
*.ain
user_custom
textwindow_temp.html
# shader generation files
*.tmp
mp/src/materialsystem/stdshaders/fxctmp9_tmp/
mp/src/materialsystem/stdshaders/shaders/fxc/
mp/src/materialsystem/stdshaders/filelist.txt
mp/src/materialsystem/stdshaders/filelistgen.txt
mp/src/materialsystem/stdshaders/filestocopy.txt
mp/src/materialsystem/stdshaders/inclist.txt
mp/src/materialsystem/stdshaders/uniquefilestocopy.txt
mp/src/materialsystem/stdshaders/vcslist.txt
mp/src/materialsystem/stdshaders/makefile.stdshader_dx9_20b
mp/src/materialsystem/stdshaders/makefile.stdshader_dx9_20b.copy
mp/src/materialsystem/stdshaders/makefile.stdshader_dx9_30
mp/src/materialsystem/stdshaders/makefile.stdshader_dx9_30.copy
mp/src/materialsystem/stdshaders/buildhl2mpshaders.bat
# Server plugin files
mp/game/neo/addons
mp/game/neo/cfg/sourcemod
# Excludes
!makefile_base_posix.mak
!sourcesdk_def.mak
/sp
/mp/game/neo/cfg/user.scr
# Auto-generated by CMake
mp/game/neo/resource/GameMenu.res
mp/src/game/shared/neo/neo_version_info.cpp
# News cache
mp/game/neo/news.txt