mirror of
https://gitee.com/RubyMetric/chsrc.git
synced 2025-12-25 20:52:49 +00:00
Add `.vscode`
This commit is contained in:
parent
5106de1185
commit
a41d76b84f
|
|
@ -1,4 +1,7 @@
|
||||||
.vscode
|
.vscode/*
|
||||||
|
!.vscode/settings.json
|
||||||
|
!.vscode/c_cpp_properties.json
|
||||||
|
!.vscode/README.md
|
||||||
|
|
||||||
*.o
|
*.o
|
||||||
*.obj
|
*.obj
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,28 @@
|
||||||
|
{
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "Win32",
|
||||||
|
"includePath": [
|
||||||
|
"${workspaceFolder}/**"
|
||||||
|
],
|
||||||
|
"cStandard": "c17",
|
||||||
|
"intelliSenseMode": "windows-gcc-x64"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Linux",
|
||||||
|
"includePath": [
|
||||||
|
"${workspaceFolder}/**"
|
||||||
|
],
|
||||||
|
"cStandard": "c17"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Mac",
|
||||||
|
"includePath": [
|
||||||
|
"${workspaceFolder}/**"
|
||||||
|
],
|
||||||
|
"cStandard": "c17"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"enableConfigurationSquiggles": true,
|
||||||
|
"version": 4
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"C_Cpp.intelliSenseEngine": "Tag Parser",
|
||||||
|
"C_Cpp.default.browse.limitSymbolsToIncludedHeaders": false
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue