-
Notifications
You must be signed in to change notification settings - Fork 0
/
code.code-workspace
96 lines (96 loc) · 2.31 KB
/
code.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
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
{
"folders": [
{
"name": "root",
"path": "."
}
],
"extensions": {
"recommendations": [
"vadimcn.vscode-lldb",
"llvm-vs-code-extensions.vscode-clangd",
"mhutchie.git-graph",
"bbenoist.QML",
"ms-vscode.cmake-tools",
"sergiokdab.qttest"
]
},
"settings": {
"files.trimTrailingWhitespace": true,
"editor.formatOnSave": true,
"clangd.arguments": [
"-header-insertion=never",
"--clang-tidy=false"
],
"cmake.copyCompileCommands": "${workspaceFolder:root}/compile_commands.json",
"files.insertFinalNewline": true,
"files.associations": {
"*.code-workspace.template": "json"
}
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Current Target (LLDB Linux)",
"type": "lldb",
"request": "launch",
"program": "${command:cmake.launchTargetPath}",
"args": [
"-m",
"-e",
"examples/default_counter_app/"
],
"cwd": "${workspaceFolder:root}",
"initCommands": [
"settings set target.process.stop-on-exec false",
"command script import /data/secured/home/serj/Qt/Tools/QtCreator/share/qtcreator/debugger/lldbbridge.py"
],
"sourceMap": {
"/home/qt/work/qt": "$${QT_INSTALL}/../Src"
}
}
]
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"problemMatcher": [],
"label": "Run current target under valgrind",
"command": "/usr/bin/valgrind",
"type": "shell",
"args": [
"${command:cmake.launchTargetPath}"
],
"presentation": {
"reveal": "always"
},
"options": {
"cwd": "${command:cmake.buildDirectory}"
}
},
{
"label": "Run Qt Assistant",
"type": "shell",
"command": "assistant",
"problemMatcher": []
},
{
"label": "Run Qt Designer",
"type": "shell",
"command": "designer",
"problemMatcher": []
},
{
"label": "Build Flutter Engine",
"type": "shell",
"command": "ninja",
"problemMatcher": [],
"options": {
"cwd": "${env:FLUTTER_ENGINE_FOLDER}/../out/host_debug_unopt"
},
}
]
}
}