-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmeov.code-workspace
49 lines (48 loc) · 1.27 KB
/
meov.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
{
"folders": [ { "path": "./" } ],
"settings": {
"cmake.buildDirectory": "${workspaceFolder}/build/vscode/${buildType}",
"cmake.installPrefix": "${workspaceFolder}/bin",
"cmake.parallelJobs": 16,
"cmake.preferredGenerators": [ "Ninja" ],
"cmake.buildArgs": [ "-v" ],
"cmake.configureOnEdit": false,
"sonarlint.pathToCompileCommands": "${workspaceFolder}\\build\\vscode\\Debug\\compile_commands.json",
"editor.unicodeHighlight.ambiguousCharacters": false,
"editor.renderWhitespace": "all",
"editor.wordWrapColumn": 120,
"editor.formatOnSave": true,
"editor.formatOnSaveMode": "modifications",
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "(VS 19) Launch Meov",
"type": "cppvsdbg",
"request": "launch",
"program": "${command:cmake.launchTargetPath}",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}/assets",
},
{
"name": "(CppDbg) Launch Meov",
"type": "cppdbg",
"request": "launch",
"program": "${command:cmake.launchTargetPath}",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}/assets",
}
],
"compounds": []
},
"extensions": {
"recommendations": [
"ms-vscode.cpptools",
"ms-vscode.cmake-tools",
"SonarSource.sonarlint-vscode"
]
}
}