20 lines
562 B
JSON
20 lines
562 B
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Build",
|
|
"type": "process",
|
|
"command": "/data/data/com.termux/files/usr/bin/g++",
|
|
"echoCommand": true,
|
|
"isBuildCommand": true,
|
|
"args": [
|
|
"-g",
|
|
"-o",
|
|
"${workspaceFolder}/out/hello-world",
|
|
"${workspaceFolder}/hello.cpp"
|
|
],
|
|
},
|
|
]
|
|
} |