Skip to content

Commit

Permalink
Merge pull request #26 from Srekel/srekel-tasks.json
Browse files Browse the repository at this point in the history
Added tasks.json for easy building from vs code.
  • Loading branch information
lassade authored Feb 16, 2024
2 parents 05b3df3 + 525eee2 commit 8f35b5a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "buildDebug",
"type": "shell",
"command": "zig build --summary failures -freference-trace",
"group": "build",
"problemMatcher": [
"$gcc"
],
"presentation": {
"clear": true,
// "revealProblems": "onProblem"
}
},
]
}

0 comments on commit 8f35b5a

Please sign in to comment.