-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSaturnControl.code-workspace
More file actions
60 lines (60 loc) · 1.2 KB
/
Copy pathSaturnControl.code-workspace
File metadata and controls
60 lines (60 loc) · 1.2 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
{
"folders": [
{
"path": "."
}
],
"settings": {
"cmake.configureOnOpen": true,
"cmake.sourceDirectory": "${workspaceFolder}",
"cmake.buildDirectory": "${workspaceFolder}/build",
"C_Cpp.default.configurationProvider": "ms-vscode.cmake-tools",
"files.associations": {
"*.h": "cpp",
"*.cpp": "cpp",
"*.qrc": "xml"
},
"editor.formatOnSave": true
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Debug SaturnControl",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/SaturnControl",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "CMake: build"
}
]
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "CMake: build",
"type": "cmake",
"command": "build",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [],
"detail": "Builds the project using CMake"
}
]
}
}