mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-05 08:28:32 +00:00
35 lines
1.2 KiB
JSON
35 lines
1.2 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}/contrib/ports/unix/example_app/build && cmake --build ."
|
|
},
|
|
"windows": {
|
|
"command": "cd ${workspaceFolder}/contrib/ports/win32/example_app/build && cmake --build ."
|
|
}
|
|
},
|
|
{
|
|
"label": "Configure example_app",
|
|
"type": "shell",
|
|
"problemMatcher": "$gcc",
|
|
"group": "build",
|
|
"linux": {
|
|
"command": "cd ${workspaceFolder}/contrib/ports/unix/example_app && mkdir build && cd build && cmake .."
|
|
},
|
|
"windows": {
|
|
"command": "cd ${workspaceFolder}/contrib/ports/win32/example_app && mkdir build && cd build && cmake .."
|
|
}
|
|
}
|
|
]
|
|
} |