0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-24 03:28:48 +00:00

feat(debug): use C++14

This commit is contained in:
Baoshuo Ren 2021-11-25 19:45:31 +08:00 committed by Baoshuo Ren
parent b8eb3ce10a
commit db581675ea
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

23
.vscode/tasks.json vendored
View File

@ -7,7 +7,7 @@
"windows": { "windows": {
"command": "g++", "command": "g++",
"args": [ "args": [
"--std=c++11", "-std=c++14",
"-g", "-g",
"\"${file}\"", "\"${file}\"",
"-o", "-o",
@ -17,7 +17,7 @@
"linux": { "linux": {
"command": "/usr/bin/g++", "command": "/usr/bin/g++",
"args": [ "args": [
"--std=c++11", "-std=c++14",
"-g", "-g",
"\"${file}\"", "\"${file}\"",
"-o", "-o",
@ -50,24 +50,5 @@
"panel": "shared" "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"
// }
] ]
} }