-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModbusScope.code-workspace
More file actions
64 lines (64 loc) · 1.38 KB
/
ModbusScope.code-workspace
File metadata and controls
64 lines (64 loc) · 1.38 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
{
"folders": [
{
"path": "."
}
],
"settings": {
"c-cpp-flylint.clang.enable": false,
"c-cpp-flylint.cppcheck.enable": true,
"c-cpp-flylint.flexelint.enable": false,
"c-cpp-flylint.flawfinder.enable": false,
"c-cpp-flylint.lizard.enable": false,
"editor.formatOnSave": false,
"[cpp]": {
"editor.formatOnSave": true
},
"files.associations": {
"*.h": "cpp"
}
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Debug Qt Application with cppdbg",
"type": "cppdbg",
"request": "launch",
"program": "${command:cmake.launchTargetPath}",
"stopAtEntry": false,
"cwd": "${workspaceFolder:ModbusScope}",
"visualizerFile": "${command:qt-cpp.natvis}",
"showDisplayString": true,
"linux": {
"MIMode": "gdb",
"miDebuggerPath": "/usr/bin/gdb",
},
"windows": {
"environment": [
{
"name": "PATH",
"value": "${env:PATH};${command:qt-cpp.qtDir}"
},
{
"name": "QT_QPA_PLATFORM_PLUGIN_PATH",
"value": "${command:qt-cpp.QT_QPA_PLATFORM_PLUGIN_PATH}"
},
{
"name": "QML_IMPORT_PATH",
"value": "${command:qt-cpp.QML_IMPORT_PATH}"
}
],
"MIMode": "gdb",
"miDebuggerPath": "${command:qt-cpp.minGWgdb}"
}
}
]
},
"extensions": {
"recommendations": [
"theqtcompany.qt-cpp-pack",
"jbenden.c-cpp-flylint"
]
}
}