lwip/.vscode/tasks.json
Dirk Ziegelmeier 2124becd04 Give lwIP a top-level CMakeLists.txt
(as it is common in other projects)
This breaks iteropts.sh for now
2018-10-08 21:02:43 +02:00

48 lines
1.5 KiB
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build example_app",
"identifier": "build",
"type": "shell",
"problemMatcher": "$gcc",
"group": {
"kind": "build",
"isDefault": true
},
"linux": {
"command": "cd ${workspaceFolder}/build && cmake --build ."
},
"windows": {
"command": "cd ${workspaceFolder}/build; 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 .."
}
},
{
"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"
},
}
]
}