vs code运行ege,launch和tasks怎么配置
时间: 2024-02-25 15:54:52 浏览: 93
要在 VS Code 中运行 ege(Easy Graphics Engine),需要配置 launch.json 和 tasks.json 文件。
首先,在 VS Code 中打开你的项目文件夹,然后按下 F5 键,会提示你创建一个 launch.json 文件。点击“创建一个 launch.json 文件”并选择 C++(GDB/LLDB)环境。
然后,将以下代码粘贴到 launch.json 文件中:
```
{
"version": "0.2.0",
"configurations": [
{
"name": "ege Debug",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/your_program_name.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
"miDebuggerPath": "mingw32-gdb.exe",
"preLaunchTask": "compile ege"
}
]
}
```
其中,"program" 对应的是你的可执行文件名,需要根据你的实际情况修改。
接下来,需要配置 tasks.json 文件。在 VS Code 中按下 Ctrl+Shift+P,输入“Configure Task”,选择“终端:配置任务”,然后选择“tasks.json”文件。
将以下代码粘贴到 tasks.json 文件中:
```
{
"tasks": [
{
"taskName": "compile ege",
"type": "shell",
"command": "mingw32-make.exe -f ${workspaceFolder}/Makefile",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
},
"problemMatcher": "$gcc"
}
]
}
```
其中,"command" 对应的是编译命令,需要根据你的实际情况修改。
配置完成后,你就可以通过按下 F5 键来启动 ege 程序了。
阅读全文