This commit is contained in:
Even Bell
2025-08-18 09:34:24 +08:00
commit 6051ece39e
9 changed files with 196 additions and 0 deletions

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

@@ -0,0 +1,21 @@
{
"cmake.debugConfig": {
"args": [
// 程序运行参数
]
},
"cmake.configureSettings": {},
"cmake.outputLogEncoding": "utf8bom",
"cmake.generator": "Ninja",
// "cmake.enableLanguageServices": false,
"[cpp]": {
"files.encoding": "utf8bom"
},
"[cuda-cpp]": {
"files.encoding": "utf8bom",
},
"files.associations": {
"iostream": "cpp",
"chrono": "cpp"
},
}