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

View File

@@ -4,13 +4,14 @@
"name": "Linux",
"includePath": [
"${workspaceFolder}/include",
"${workspaceFolder}/**",
"${workspaceFolder}/lib/antlr4/include",
"${workspaceFolder}/lib/cxxopts/include",
"${workspaceFolder}/lib/generated"
],
"defines": [],
"compilerPath": "/usr/lib64/ccache/clang",
"cStandard": "c11",
"cppStandard": "c++14",
"cppStandard": "c++11",
"intelliSenseMode": "clang-x64",
"configurationProvider": "ms-vscode.cmake-tools"
}

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
}
]
}
]
}

View File

@@ -70,6 +70,8 @@
"streambuf": "cpp",
"thread": "cpp",
"cinttypes": "cpp",
"typeinfo": "cpp"
"typeinfo": "cpp",
"regex": "cpp",
"shared_mutex": "cpp"
}
}