mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-20 21:23:47 +00:00
18 lines
474 B
JSON
18 lines
474 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",
|
||
|
|
"group": "build",
|
||
|
|
"type": "shell",
|
||
|
|
"command": "scons",
|
||
|
|
"args": [
|
||
|
|
// enable for debugging with breakpoints
|
||
|
|
"dev_build=yes",
|
||
|
|
],
|
||
|
|
"problemMatcher": "$msCompile"
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|