mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-23 19:28:48 +00:00
feat(debug): use C++14
This commit is contained in:
parent
b8eb3ce10a
commit
db581675ea
25
.vscode/tasks.json
vendored
25
.vscode/tasks.json
vendored
@ -7,7 +7,7 @@
|
||||
"windows": {
|
||||
"command": "g++",
|
||||
"args": [
|
||||
"--std=c++11",
|
||||
"-std=c++14",
|
||||
"-g",
|
||||
"\"${file}\"",
|
||||
"-o",
|
||||
@ -17,7 +17,7 @@
|
||||
"linux": {
|
||||
"command": "/usr/bin/g++",
|
||||
"args": [
|
||||
"--std=c++11",
|
||||
"-std=c++14",
|
||||
"-g",
|
||||
"\"${file}\"",
|
||||
"-o",
|
||||
@ -50,24 +50,5 @@
|
||||
"panel": "shared"
|
||||
}
|
||||
}
|
||||
// ,
|
||||
// {
|
||||
// "type": "shell",
|
||||
// "label": "C/C++: g++ build active file",
|
||||
// "command": "/usr/bin/g++",
|
||||
// "args": [
|
||||
// "-g",
|
||||
// "${file}",
|
||||
// "-o",
|
||||
// "${fileDirname}/${fileBasenameNoExtension}"
|
||||
// ],
|
||||
// "options": {
|
||||
// "cwd": "${workspaceFolder}"
|
||||
// },
|
||||
// "problemMatcher": [
|
||||
// "$gcc"
|
||||
// ],
|
||||
// "group": "build"
|
||||
// }
|
||||
]
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user