-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathknut.code-workspace
55 lines (55 loc) · 1.56 KB
/
knut.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
{
"folders": [
{
"path": "."
}
],
"settings": {
"clangd.arguments": [
"-header-insertion=never"
],
"files.associations": {
"memory": "cpp",
"iosfwd": "cpp",
"array": "cpp",
"ranges": "cpp",
"span": "cpp",
"vector": "cpp",
"xstring": "cpp",
"xutility": "cpp",
"*.moc": "cpp"
}
},
"launch": {
"configurations": [
{
"name": "Current Target (VS)",
"type": "cppvsdbg",
"request": "launch",
"program": "${command:cmake.launchTargetPath}",
"visualizerFile": "${workspaceFolder}/qt6.natvis",
"cwd": "${workspaceFolder}",
"sourceFileMap": {
"C:/work/build/qt5_workdir/w/s": "${QTDIR}../Src",
"Q:/qt5_workdir/w/s": "${QTDIR}../Src",
"C:/Users/qt/work/install": "${QTDIR}../Src",
"C:/Users/qt/work/qt": "${QTDIR}../Src"
}
},
{
"name": "Current Target (LLDB)",
"type": "lldb",
"request": "launch",
"program": "${command:cmake.launchTargetPath}",
"cwd": "${command:cmake.buildDirectory}"
}
]
},
"extensions": {
"recommendations": [
"ms-vscode.cpptools",
"ms-vscode.cmake-tools",
"twxs.cmake"
]
}
}