1 Star 0 Fork 31

iWuKe/信号实验箱

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tiny-signal-box.code-workspace 4.38 KB
一键复制 编辑 原始数据 按行查看 历史
ZZH-Finalize 提交于 2023-02-13 07:36 . 更正cmake预设文件
{
"folders": [
{
"path": ".",
"name": "信号实验箱"
}
],
"settings": {
"C_Cpp.default.cStandard": "c99",
"C_Cpp.default.cppStandard": "gnu++11",
"C_Cpp.default.configurationProvider": "ms-vscode.cmake-tools",
"C_Cpp.vcFormat.newLine.beforeOpenBrace.type": "newLine",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"*.code-workspace": true,
// "debug": true,
},
"files.encoding": "utf8",
"search.useIgnoreFiles": false,
"markdownlint.config": {
"MD033": false
},
"files.eol": "\r\n",
"pasteImage.path": "${currentFileDir}/readme_rc",
"cmake.useCMakePresets": "always"
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"type": "cmake",
"label": "configure",
"command": "configure",
"group": "build",
"presentation": {
"clear": true,
"focus": true,
"close": true
},
"detail": "配置"
},
{
"type": "cmake",
"label": "build",
"command": "build",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": true,
},
"problemMatcher": "$gcc",
"dependsOn": "configure",
"detail": "构建"
},
{
"type": "shell",
"label": "clean",
"command": "rm",
"args": [
"-r",
"./build"
],
"options": {
"cwd": "${workspaceFolder}"
},
"presentation": {
"reveal": "silent",
"close": true
},
"detail": "清理工作区内的目标文件"
},
{
"type": "shell",
"label": "run",
"command": "./signalBox",
"options": {
"cwd": "${workspaceFolder}/build"
},
"args": [],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": true
},
"detail": "运行",
"group": {
"kind": "test",
"isDefault": true
}
}
]
},
"launch": {
"configurations": [
{
"name": "QT 5.15",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/signalBox.exe",
"args": [],
// "stopAtEntry": true,
"cwd": "${workspaceFolder}/build",
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
"miDebuggerPath": "D:/Qt/Tools/mingw810_32/bin/gdb.exe",
"setupCommands": [
{
"description": "为 gdb 启用整齐打印",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
],
"compounds": []
},
"extensions": {
"recommendations": [
"ms-vscode.cpptools",
"ms-vscode.cmake-tools",
"josetr.cmake-language-support-vscode",
"daohong-emilio.yash",
"surajbarkale.ninja",
"DavidAnson.vscode-markdownlint",
"yzhang.markdown-all-in-one",
],
"unwantedRecommendations": []
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/iWuKe/signal-test-box.git
git@gitee.com:iWuKe/signal-test-box.git
iWuKe
signal-test-box
信号实验箱
master

搜索帮助