Add translation and cxxopts

This commit is contained in:
2020-10-01 22:03:09 +05:30
parent b893608a57
commit 036fefcd1d
8 changed files with 86 additions and 25 deletions

19
.vscode/launch.json vendored
View File

@@ -57,6 +57,25 @@
"ignoreFailures": true
}
]
},
{
"name": "GDB - error.bfe",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/main.out",
"args": ["samples/error.bfe"],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}