File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ CMakeLists.txt.user
1919nbproject /*
2020.idea /*
2121.browse.VC *
22- .vscode
2322cmake-build- * /
2423.vs
2524* .user
Original file line number Diff line number Diff line change 1+ {
2+ "version" : " 2.0.0" ,
3+ "tasks" : [
4+ {
5+ "label" : " Run: authserver" ,
6+ "type" : " shell" ,
7+ "command" : " ${workspaceFolder}/build/bin/Debug/bin/authserver" ,
8+ "args" : [
9+ " --config" ,
10+ " ${workspaceFolder}/build/bin/Debug/etc/authserver.conf"
11+ ],
12+ "options" : {
13+ "cwd" : " ${workspaceFolder}/build/bin/Debug/bin"
14+ },
15+ "presentation" : {
16+ "label" : " authserver" ,
17+ "group" : " servers" ,
18+ "reveal" : " always" ,
19+ "panel" : " dedicated" ,
20+ "close" : false
21+ },
22+ "isBackground" : true ,
23+ "problemMatcher" : []
24+ },
25+ {
26+ "label" : " Run: worldserver" ,
27+ "type" : " shell" ,
28+ "command" : " ${workspaceFolder}/build/bin/Debug/bin/worldserver" ,
29+ "args" : [
30+ " --config" ,
31+ " ${workspaceFolder}/build/bin/Debug/etc/worldserver.conf"
32+ ],
33+ "options" : {
34+ "cwd" : " ${workspaceFolder}/build/bin/Debug/bin"
35+ },
36+ "presentation" : {
37+ "label" : " worldserver" ,
38+ "group" : " servers" ,
39+ "reveal" : " always" ,
40+ "panel" : " dedicated" ,
41+ "close" : false
42+ },
43+ "isBackground" : true ,
44+ "problemMatcher" : []
45+ },
46+ {
47+ "label" : " Run: authserver + worldserver" ,
48+ "dependsOrder" : " parallel" ,
49+ "dependsOn" : [
50+ " Run: authserver" ,
51+ " Run: worldserver"
52+ ],
53+ "presentation" : {
54+ "reveal" : " always"
55+ },
56+ "problemMatcher" : []
57+ }
58+ ]
59+ }
You can’t perform that action at this time.
0 commit comments