🎨 refactor(.vscode/tasks.json): 移除CMake配置任务,添加并行编译线程数的输入选项

🐛 fix(demo/oled/test.c): 优化代码可读性
main
JiXieShi 2024-12-15 23:09:55 +08:00
parent 68d2ce3205
commit 58ead967ff
2 changed files with 51 additions and 67 deletions

36
.vscode/tasks.json vendored
View File

@ -19,30 +19,6 @@
]
}
},
{
"label": "CMake Configure",
"type": "shell",
"command": "cmake",
"dependsOn": [
"Create Build Directories"
],
"args": [
"-S",
".",
"-B",
"build",
"-G",
"${input:cmakeGenerator}"
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [
"$gcc"
],
"detail": "Configure the project using CMake."
},
{
"label": "CMake Build",
"type": "shell",
@ -54,7 +30,9 @@
"--build",
"build",
"--target",
"all"
"all",
"--",
"-j${input:threadCount}"
],
"group": {
"kind": "build",
@ -63,7 +41,7 @@
"problemMatcher": [
"$gcc"
],
"detail": "Build the project using CMake and Ninja."
"detail": "Build the project using CMake with parallel compilation."
}
],
"inputs": [
@ -78,6 +56,12 @@
],
"default": "Ninja",
"description": "The CMake generator to use."
},
{
"type": "promptString",
"id": "threadCount",
"description": "Number of parallel compilation threads",
"default": "16"
}
]
}