mirror of
https://github.com/Alcaro/Flips.git
synced 2026-04-24 06:48:38 -05:00
28 lines
663 B
JSON
28 lines
663 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 Release",
|
|
"type": "shell",
|
|
"command": "./make.sh",
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"problemMatcher": [
|
|
"$gcc"
|
|
]
|
|
},
|
|
{
|
|
"label": "Build Debug",
|
|
"type": "shell",
|
|
"command": "make CFLAGS='-O0 -g'",
|
|
"problemMatcher": [
|
|
"$gcc"
|
|
]
|
|
}
|
|
]
|
|
}
|