Files
messy-codepile/.vscode/tasks.json
T
2026-08-11 11:34:46 +08:00

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"
],
},
]
}