forked from beyond-all-reason/spring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
170 lines (147 loc) · 3.19 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
# Specifies intentionally untracked file system entries to ignore.
#
# Notes:
# 1. Do not commit .gitignore files in sub directories of the repository,
# as they would have to be explicitly excluded when generating the installer,
# building the project and in other situations.
# 2. Use the full path to a dir when you want to exclude a directory
# and everything it contains. Start with repo-root, which is "/",
# and do NOT use a "/" at the end, as this would fail if that dir is a symlink.
# good example:
# /game/maps
# bad examples:
# game/maps
# /game/maps/
#
# For more details about how this file works, see:
# http://www.kernel.org/pub/software/scm/git/docs/gitignore.html
#
# when installing into ./dist
# this is the default, but not recommended
/dist
# DoxyGen output
/doc/doxygen
# doc/manpages
/manpages
# CMake generated version container file for use within tarballs
/VERSION
# CMake related
# though it is cleaner to not build directly in the repository root
CMakeFiles
/CMakeCache.txt
*.sdz
Makefile
cmake_install.cmake
CTestTestfile.cmake
progress.make
# Ninja related
/.ninja_log
/.ninja_deps
/build.ninja
/rules.ninja
# Visual Studio related
*.ncb
*.suo
/rts/build/vstudio8/Release
/rts/build/vstudio8/Debug
/rts/build/vstudio8/Debug+MT
/rts/build/vstudio8/Release with error catching
/rts/build/vstudio8/Release+MT with error catching
/rts/build/vstudio8/Syncdebug
/rts/build/vstudio10/Release
/rts/build/vstudio10/Debug
/rts/build/vstudio10/Debug+MT
/rts/build/vstudio10/Release with error catching
/rts/build/vstudio10/Release+MT with error catching
/rts/build/vstudio10/Syncdebug
/_ReSharper.Caches
.vs/
.vscode
# Windows libraries used by spring when compiling with MinGW
# recommended: place the dir somewhere else, and specify with
# MINGWLIBS=<your-path-here>/mingwlibs
/mingwlibs
/mingwlibs64
# Windows libraries used by spring when compiling with Visual Studio
/vclibs
# Installer files
/external
/installer/SpringLobby
/installer/TASClient
/installer/downloads
/installer/custom_defines.nsi
# AI files
/AI/Skirmish/*/build
/AI/Wrappers/JavaOO/target
/AI/Wrappers/JavaOO/sourceFiles.txt
/AI/Wrappers/JavaOO/src-generated/
/AI/Interfaces/Java/build
/AI/Interfaces/Java/target
/AI/Interfaces/Java/myGeneratedSourceDir.stub
/AI/Interfaces/Java/src-generated/
/AI/Interfaces/Java/sourceFiles.txt
/AI/Skirmish/*/target
/AI/Skirmish/NullJavaAI/sourceFiles.txt
/AI/Skirmish/NullOOJavaAI/sourceFiles.txt
/AI/Wrappers/Cpp/src-generated/
*.jar
# Misc file endings (eg. build or temp files)
*.o
*.so
*.log
*~
.*.swp
*.a
*.gch
*.dir
*.class
*.orig
*.dylib
*.obj
*.dll
*.exe
# generated files
/demotool
/spring
/spring-dedicated
/spring-headless
/springsettings.cfg
/src-generated
#buildbot generated dir
/build
/build-*
/docker-build/cache
#installer downloaded/generated stuff
/installer/Springlobby/
/installer/*.exe
#spring related files when run in portable mode
/cache
/lobby
/log
/infolog.txt
/demos
/LuaUI
#Visual Studio files
*.vcxproj
*.vcxproj.filters
*.vcxproj.user
*.pyc
Debug/
Release/
RelWithDebInfo/
x64/
*.sln
*.db
Spring.VC.VC.opendb
# downloaded files
/pool
/maps
/rapid
/packages
# ignore autogenerated doc
/doc/site/ldoc
# ignore local development paths
.cache
toolchain
compile_commands.json
build-*