mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-19 21:46:42 +00:00
* 1 * Launch Dreamseeker is the default vscode launch config once again (#68666) Co-authored-by: William Wallace <me@wiox.me>
33 lines
712 B
JSON
33 lines
712 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "byond",
|
|
"request": "launch",
|
|
"name": "Launch DreamSeeker",
|
|
"preLaunchTask": "Build All",
|
|
"dmb": "${workspaceFolder}/${command:CurrentDMB}"
|
|
},
|
|
{
|
|
"type": "byond",
|
|
"request": "launch",
|
|
"name": "Launch DreamDaemon",
|
|
"preLaunchTask": "Build All",
|
|
"dmb": "${workspaceFolder}/${command:CurrentDMB}",
|
|
"dreamDaemon": true
|
|
},
|
|
{
|
|
"name": "Debug External Libraries",
|
|
"type": "cppvsdbg",
|
|
"request": "launch",
|
|
"program": "${command:dreammaker.returnDreamDaemonPath}",
|
|
"cwd": "${workspaceRoot}",
|
|
"args": [
|
|
"${command:dreammaker.getFilenameDmb}",
|
|
"-trusted"
|
|
],
|
|
"preLaunchTask": "Build All"
|
|
}
|
|
]
|
|
}
|