Added vscode support

This commit is contained in:
Hunt Lin 2020-11-03 13:01:10 +08:00
parent 9f6c66e865
commit fdc19e7f19
2 changed files with 30 additions and 0 deletions

22
.vscode/c_cpp_properties.json vendored Normal file
View file

@ -0,0 +1,22 @@
{
"configurations": [
{
"name": "Win32",
"includePath": [
"${default}"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"windowsSdkVersion": "10.0.19041.0",
"compilerPath": "C:/msys64/mingw64/bin/cc.exe",
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "gcc-x64",
"compileCommands": "${workspaceFolder}/x/compile_commands.json"
}
],
"version": 4
}

8
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,8 @@
{
"files.associations": {
"*.tcc": "c",
"random": "c",
"ostream": "c",
"streambuf": "c"
}
}