初始提交

This commit is contained in:
2026-05-06 11:44:00 +08:00
commit 013ba04706
18 changed files with 301 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
{
"configurations": [
{
"name": "windows-gcc-x64",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"compilerPath": "D:/settings/Language/C/mingw64/bin/g++.exe",
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "windows-gcc-x64",
"compilerArgs": [
"-Wall",
"-Wextra",
"-Wshadow",
"-fsanitize=address",
"-g3"
]
}
],
"version": 4
}