Skip to content

Commit d955965

Browse files
committed
Update the project to use VCPKG and fix building on Windows
1 parent c89684c commit d955965

File tree

480 files changed

+10371
-89651
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

480 files changed

+10371
-89651
lines changed

.clang-format

+13-22
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,13 @@
1-
Language: Cpp
2-
BasedOnStyle: LLVM
3-
IndentWidth: 4
4-
5-
BreakBeforeBraces: Stroustrup
6-
7-
8-
9-
10-
FixNamespaceComments: true
11-
IndentCaseLabels: true
12-
NamespaceIndentation: All
13-
14-
BreakConstructorInitializersBeforeComma: true
15-
16-
AllowShortFunctionsOnASingleLine: None
17-
18-
ColumnLimit: 90
19-
20-
AlwaysBreakTemplateDeclarations: true
21-
22-
PointerAlignment: Left
1+
Language: Cpp
2+
BasedOnStyle: LLVM
3+
IndentWidth: 4
4+
BreakBeforeBraces: Allman
5+
FixNamespaceComments: true
6+
IndentCaseLabels: true
7+
NamespaceIndentation: All
8+
BreakConstructorInitializersBeforeComma: true
9+
ColumnLimit: 100
10+
AlwaysBreakTemplateDeclarations: true
11+
PointerAlignment: Left
12+
AllowShortFunctionsOnASingleLine: None
13+

.gitignore

+13-43
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,24 @@
1-
#
2-
# Common
3-
#
4-
5-
.vscode
6-
tags
7-
8-
*.temp
9-
10-
open-builder/
11-
OpenBuilder/
12-
*.zip
13-
14-
texture_packs/ElijahHyper
15-
16-
*.srctrlprj
17-
*.srctrldb
18-
*.srctrlbm
19-
20-
21-
#
22-
# Linux
23-
#
24-
1+
# Linux
252
build/
26-
bin/
27-
custom_run.sh
28-
zcustom_run.sh
29-
ybuild.sh
30-
31-
#
32-
# Windows
33-
#
343

4+
# Windows
355
*.dll
36-
CMakeFiles/
37-
CMakeCache.txt
386
*.exe
39-
40-
# Visual Studio
41-
*.sln
42-
*.vcxproj
437
*.filters
448
*.user
459
*.vs
46-
10+
.vscode
4711
Debug/
4812
Release/
49-
UnitTests/
50-
open-builder-unit-tests/
5113

52-
# Experimental
14+
# Misc
15+
*.zip
16+
*.temp
17+
*.srctrlprj
18+
*.srctrldb
19+
*.srctrlbm
20+
21+
# Vcpkg
22+
vcpkg_installed/
5323

54-
experimental/
24+
open-builder/

0 commit comments

Comments
 (0)