forked from Rust-related/RustPython
36 lines
834 B
JSON
36 lines
834 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Build RustPython Debug without SSL",
|
|
"type": "shell",
|
|
"command": "cargo",
|
|
"args": [
|
|
"build",
|
|
],
|
|
"problemMatcher": [
|
|
"$rustc",
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true,
|
|
},
|
|
},
|
|
{
|
|
"label": "Build RustPython Debug",
|
|
"type": "shell",
|
|
"command": "cargo",
|
|
"args": [
|
|
"build",
|
|
"--features=ssl"
|
|
],
|
|
"problemMatcher": [
|
|
"$rustc",
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true,
|
|
},
|
|
},
|
|
],
|
|
} |