-
Notifications
You must be signed in to change notification settings - Fork 4.2k
/
settings.json
67 lines (67 loc) · 1.88 KB
/
settings.json
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
{
"C_Cpp.default.configurationProvider": "ms-vscode.makefile-tools",
"makefile.launchConfigurations": [
{
"cwd": "${workspaceRoot}",
"binaryPath": "${workspaceRoot}/${buildTarget}",
"binaryArgs": [],
"stopAtEntry": true
}
],
"makefile.configurations": [
{
"name" : "Linux - X64 - Tiles/Sound - Release",
"makeArgs": [
"-j4",
"CLANG=1",
"CCACHE=1",
"NATIVE=linux64",
"RELEASE=1",
"TILES=1",
"SOUND=1"
]
},
{
"name" : "Linux - X64 - Tiles/Sound - Debug",
"makeArgs": [
"-j4",
"CLANG=1",
"CCACHE=1",
"NATIVE=linux64",
"TILES=1",
"SOUND=1"
]
},
{
"name" : "Windows - X64 - Tiles/Sound - Release",
"makeArgs": [
"-j4",
"CROSS=/opt/mxe/usr/bin/x86_64-w64-mingw32.static-",
"TILES=1",
"SOUND=1",
"RELEASE=1",
"LOCALIZE=1",
"PREFIX=output",
"PCH=0",
"bindist",
]
},
{
"name" : "Windows - X64 - Tiles/Sound - Debug",
"makeArgs": [
"-j4",
"CROSS=/opt/mxe/usr/bin/x86_64-w64-mingw32.static-",
"TILES=1",
"SOUND=1",
"LOCALIZE=1",
"PREFIX=output",
"PCH=0",
"bindist",
]
}
],
"cmake.configureOnOpen": false,
"github-actions.remote-name": "upstream",
// NOTE: This disable the plugins formatting so astyle is used.
"C_Cpp.formatting": "disabled",
}