Add .vscode

This commit is contained in:
Aoran Zeng 2025-06-18 19:05:51 +08:00
parent 5106de1185
commit a41d76b84f
No known key found for this signature in database
GPG Key ID: 8F8BA8488E10ED98
3 changed files with 36 additions and 1 deletions

5
.gitignore vendored
View File

@ -1,4 +1,7 @@
.vscode
.vscode/*
!.vscode/settings.json
!.vscode/c_cpp_properties.json
!.vscode/README.md
*.o
*.obj

28
.vscode/c_cpp_properties.json vendored Normal file
View File

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

4
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,4 @@
{
"C_Cpp.intelliSenseEngine": "Tag Parser",
"C_Cpp.default.browse.limitSymbolsToIncludedHeaders": false
}