Start creating a VSCode workspace

This commit is contained in:
Dirk Ziegelmeier
2018-10-02 20:50:37 +02:00
parent 730b3d3f86
commit 787a7bb919
3 changed files with 96 additions and 0 deletions

34
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,34 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "(gdb) Launch",
"type": "cppdbg",
"request": "launch",
"args": [],
"stopAtEntry": true,
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
"preLaunchTask": "build",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"linux": {
"cwd": "${workspaceFolder}/contrib/ports/unix/example_app/build",
"program": "${workspaceFolder}/contrib/ports/unix/example_app/build/example_app",
},
"windows": {
"cwd": "${workspaceFolder}/contrib/ports/win32/example_app/build",
"program": "${workspaceFolder}/contrib/ports/win32/example_app/build/example_app",
}
}
]
}