Skip to content

Commit

Permalink
Ignore zips, add clean makefile command
Browse files Browse the repository at this point in the history
  • Loading branch information
cathery committed Dec 11, 2019
1 parent 0b10e97 commit 3ee4406
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ build
*.npdm
*.nso
*.nsp
*.zip
21 changes: 21 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,26 @@
"isDefault": true
}
},
{
"label": "Clean",
"type": "shell",
"promptOnClose": true,
"command": "make clean -j8",
"presentation": {
"reveal": "always",
"panel": "new"
},
"problemMatcher": {
"owner": "cpp",
"pattern": {
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
}
},
]
}

0 comments on commit 3ee4406

Please sign in to comment.