-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvvvvvv.code-workspace
57 lines (57 loc) · 1.3 KB
/
vvvvvv.code-workspace
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
{
"folders": [
{
"path": "."
},
{
"path": "../rust-sdl2"
},
{
"path": "../physfs"
}
],
"settings": {
"actionButtons": {
"commands": [
{
"name": "🖉",
"useVsCodeApi": true,
"command": "workbench.action.openWorkspaceSettingsFile",
},
{
"name": "run",
"singleInstance": true,
"useVsCodeApi": false,
"command": "RUST_LOG=trace cargo run",
},
{
"name": "build",
"singleInstance": true,
"useVsCodeApi": false,
"command": "CARGO_PROFILE_RELEASE_BUILD_OVERRIDE_DEBUG=true RUST_BACKTRACE=full cargo build --release",
},
{
"name": "build physfs",
"singleInstance": true,
"useVsCodeApi": false,
"command": "cd ../physfs && CARGO_PROFILE_RELEASE_BUILD_OVERRIDE_DEBUG=true RUST_BACKTRACE=full cargo build --release",
},
{
"name": "🖌",
"singleInstance": true,
"useVsCodeApi": false,
"command": "cargo clean && cd ../rust-sdl2 && cargo clean && cd ../physfs && cargo clean && cd ../vvvvvv-rust",
},
{
"name": "bump physfs",
"singleInstance": true,
"useVsCodeApi": false,
"command": "cd ../physfs && cargo release patch --no-publish --execute",
},
],
"defaultColor": "Yellow",
"reloadButton": "↻",
"loadNpmCommands": false
}
}
}