init commit
This commit is contained in:
60
archive/algorithm/.vscode/tasks.json
vendored
Normal file
60
archive/algorithm/.vscode/tasks.json
vendored
Normal file
@ -0,0 +1,60 @@
|
||||
{
|
||||
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||||
// for the documentation about the tasks.json format
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "debug",
|
||||
"type": "shell",
|
||||
"command": "make",
|
||||
"args": [
|
||||
"build",
|
||||
"DEBUG=TRUE",
|
||||
"NAME=${fileBasenameNoExtension}",
|
||||
"FILE=\"${file}\""
|
||||
],
|
||||
"group": "build",
|
||||
"problemMatcher": {
|
||||
"owner": "cpp",
|
||||
"fileLocation": [
|
||||
"relative",
|
||||
"${workspaceRoot}"
|
||||
],
|
||||
"pattern": {
|
||||
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
|
||||
"file": 1,
|
||||
"line": 2,
|
||||
"column": 3,
|
||||
"severity": 4,
|
||||
"message": 5
|
||||
}
|
||||
}
|
||||
},{
|
||||
"label": "debug_win",
|
||||
"type": "shell",
|
||||
"command": "mingw32-make",
|
||||
"args": [
|
||||
"build",
|
||||
"DEBUG=TRUE",
|
||||
"NAME=${fileBasenameNoExtension}",
|
||||
"FILE=\"${file}\""
|
||||
],
|
||||
"group": "build",
|
||||
"problemMatcher": {
|
||||
"owner": "cpp",
|
||||
"fileLocation": [
|
||||
"relative",
|
||||
"${workspaceRoot}"
|
||||
],
|
||||
"pattern": {
|
||||
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
|
||||
"file": 1,
|
||||
"line": 2,
|
||||
"column": 3,
|
||||
"severity": 4,
|
||||
"message": 5
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
Reference in New Issue
Block a user