mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-04 14:29:39 +00:00
VSCode cleanups
This commit is contained in:
parent
f53932d7ca
commit
3aef9c5305
2
.vscode/launch.json
vendored
2
.vscode/launch.json
vendored
@ -13,7 +13,7 @@
|
||||
"environment": [],
|
||||
"externalConsole": true,
|
||||
"MIMode": "gdb",
|
||||
"preLaunchTask": "build",
|
||||
"preLaunchTask": "Build example_app",
|
||||
"setupCommands": [
|
||||
{
|
||||
"description": "Enable pretty-printing for gdb",
|
||||
|
26
.vscode/tasks.json
vendored
26
.vscode/tasks.json
vendored
@ -5,43 +5,33 @@
|
||||
"tasks": [
|
||||
{
|
||||
"label": "Build example_app",
|
||||
"identifier": "build",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "${workspaceFolder}/build"
|
||||
},
|
||||
"problemMatcher": "$gcc",
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
},
|
||||
"linux": {
|
||||
"command": "cd ${workspaceFolder}/build && cmake --build ."
|
||||
},
|
||||
"windows": {
|
||||
"command": "cd ${workspaceFolder}/build; cmake --build ."
|
||||
}
|
||||
"command": "cmake --build ."
|
||||
},
|
||||
{
|
||||
"label": "Configure example_app",
|
||||
"type": "shell",
|
||||
"problemMatcher": "$gcc",
|
||||
"group": "build",
|
||||
"linux": {
|
||||
"command": "cd ${workspaceFolder} && mkdir build && cd build && cmake .."
|
||||
},
|
||||
"windows": {
|
||||
"command": "cd ${workspaceFolder}; mkdir build; cd build; cmake .."
|
||||
}
|
||||
"command": "cd ${workspaceFolder}; mkdir build; cd build; cmake .."
|
||||
},
|
||||
{
|
||||
"label": "Generate documentation",
|
||||
"type": "shell",
|
||||
"problemMatcher": [],
|
||||
"group": "none",
|
||||
"linux": {
|
||||
"command": "cd ${workspaceFolder}/build && cmake --build . --target lwipdocs"
|
||||
},
|
||||
"windows": {
|
||||
"command": "cd ${workspaceFolder}/build; cmake --build . --target lwipdocs"
|
||||
"options": {
|
||||
"cwd": "${workspaceFolder}/build"
|
||||
},
|
||||
"command": "cmake --build . --target lwipdocs"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user