-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathshare-everything.code-workspace
More file actions
128 lines (128 loc) · 2.99 KB
/
share-everything.code-workspace
File metadata and controls
128 lines (128 loc) · 2.99 KB
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
{
"folders": [
{
"path": "."
}
],
"settings": {
"eslint.workingDirectories": ["./api/server", "./chrome"],
"cmake.sourceDirectory": "${workspaceFolder}/windows",
"cmake.buildDirectory": "${workspaceFolder}/windows/build",
"files.associations": {
"*.h": "cpp",
"*.txt": "plaintext",
"CMakeLists.txt": "cmake",
"*.html": "html",
"*.i": "cpp",
"string": "cpp",
"vector": "cpp",
"atomic": "cpp",
"bit": "cpp",
"cctype": "cpp",
"compare": "cpp",
"concepts": "cpp",
"cstddef": "cpp",
"cstdint": "cpp",
"cstdio": "cpp",
"cstdlib": "cpp",
"cstring": "cpp",
"ctime": "cpp",
"cwchar": "cpp",
"exception": "cpp",
"initializer_list": "cpp",
"iosfwd": "cpp",
"limits": "cpp",
"memory": "cpp",
"new": "cpp",
"set": "cpp",
"tuple": "cpp",
"type_traits": "cpp",
"typeinfo": "cpp",
"utility": "cpp",
"xmemory": "cpp",
"xstddef": "cpp",
"xstring": "cpp",
"xtr1common": "cpp",
"xtree": "cpp",
"xutility": "cpp",
"algorithm": "cpp",
"charconv": "cpp",
"clocale": "cpp",
"cmath": "cpp",
"format": "cpp",
"iterator": "cpp",
"locale": "cpp",
"map": "cpp",
"optional": "cpp",
"stdexcept": "cpp",
"streambuf": "cpp",
"system_error": "cpp",
"xfacet": "cpp",
"xiosbase": "cpp",
"xlocale": "cpp",
"xlocbuf": "cpp",
"xlocinfo": "cpp",
"xlocmes": "cpp",
"xlocmon": "cpp",
"xlocnum": "cpp",
"xloctime": "cpp",
"chrono": "cpp",
"forward_list": "cpp",
"iomanip": "cpp",
"ios": "cpp",
"istream": "cpp",
"ostream": "cpp",
"ratio": "cpp",
"sstream": "cpp",
"iostream": "cpp",
"stop_token": "cpp",
"thread": "cpp",
"*.rh": "cpp",
"codecvt": "cpp",
"condition_variable": "cpp",
"deque": "cpp",
"fstream": "cpp",
"functional": "cpp",
"hash_map": "cpp",
"hash_set": "cpp",
"list": "cpp",
"mutex": "cpp",
"regex": "cpp",
"stack": "cpp",
"unordered_map": "cpp",
"xhash": "cpp",
"cassert": "cpp"
}
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "build-win",
"type": "shell",
"command": "cd ${workspaceFolder}/windows && cmake --build build",
"group": {
"kind": "build",
"isDefault": true
}
}
]
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "(Windows) 起動",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/windows/build/src/Debug/share-everything.exe",
"args": ["--enable-debug"],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"console": "internalConsole",
"environment": [],
"preLaunchTask": "build-win"
}
]
}
}