mirror of
https://github.com/joncampbell123/dosbox-x.git
synced 2025-10-14 02:17:36 +08:00
VSCode: added launch configurations for all flavors
This commit is contained in:
99
.vscode/launch.json
vendored
Normal file
99
.vscode/launch.json
vendored
Normal file
@@ -0,0 +1,99 @@
|
||||
{
|
||||
// Use IntelliSense to learn about possible attributes.
|
||||
// Hover to view descriptions of existing attributes.
|
||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "(Windows) Launch SDL1 Debug Win32",
|
||||
"type": "cppvsdbg",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/bin/Win32/Debug/dosbox-x.exe",
|
||||
"args": [],
|
||||
"stopAtEntry": false,
|
||||
"cwd": "${workspaceFolder}/bin/Win32/Debug",
|
||||
"environment": [],
|
||||
"externalConsole": true
|
||||
},
|
||||
{
|
||||
"name": "(Windows) Launch SDL1 Debug Win64",
|
||||
"type": "cppvsdbg",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/bin/x64/Debug/dosbox-x.exe",
|
||||
"args": [],
|
||||
"stopAtEntry": false,
|
||||
"cwd": "${workspaceFolder}/bin/x64/Debug",
|
||||
"environment": [],
|
||||
"externalConsole": true
|
||||
},
|
||||
{
|
||||
"name": "(Windows) Launch SDL1 Release Win32",
|
||||
"type": "cppvsdbg",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/bin/Win32/Release/dosbox-x.exe",
|
||||
"args": [],
|
||||
"stopAtEntry": false,
|
||||
"cwd": "${workspaceFolder}/bin/Win32/Release",
|
||||
"environment": [],
|
||||
"externalConsole": true
|
||||
},
|
||||
{
|
||||
"name": "(Windows) Launch SDL1 Release Win64",
|
||||
"type": "cppvsdbg",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/bin/x64/Release/dosbox-x.exe",
|
||||
"args": [],
|
||||
"stopAtEntry": false,
|
||||
"cwd": "${workspaceFolder}/bin/x64/Release",
|
||||
"environment": [],
|
||||
"externalConsole": true
|
||||
},
|
||||
|
||||
|
||||
|
||||
{
|
||||
"name": "(Windows) Launch SDL2 Debug Win32",
|
||||
"type": "cppvsdbg",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/bin/Win32/Debug SDL2/dosbox-x.exe",
|
||||
"args": [],
|
||||
"stopAtEntry": false,
|
||||
"cwd": "${workspaceFolder}/bin/Win32/Debug SDL2",
|
||||
"environment": [],
|
||||
"externalConsole": true
|
||||
},
|
||||
{
|
||||
"name": "(Windows) Launch SDL2 Debug Win64",
|
||||
"type": "cppvsdbg",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/bin/x64/Debug SDL2/dosbox-x.exe",
|
||||
"args": [],
|
||||
"stopAtEntry": false,
|
||||
"cwd": "${workspaceFolder}/bin/x64/Debug SDL2",
|
||||
"environment": [],
|
||||
"externalConsole": true
|
||||
},
|
||||
{
|
||||
"name": "(Windows) Launch SDL2 Release Win32",
|
||||
"type": "cppvsdbg",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/bin/Win32/Release SDL2/dosbox-x.exe",
|
||||
"args": [],
|
||||
"stopAtEntry": false,
|
||||
"cwd": "${workspaceFolder}/bin/Win32/Release SDL2",
|
||||
"environment": [],
|
||||
"externalConsole": true
|
||||
},
|
||||
{
|
||||
"name": "(Windows) Launch SDL2 Release Win64",
|
||||
"type": "cppvsdbg",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/bin/x64/Release SDL2/dosbox-x.exe",
|
||||
"args": [],
|
||||
"stopAtEntry": false,
|
||||
"cwd": "${workspaceFolder}/bin/x64/Release SDL2",
|
||||
"environment": [],
|
||||
"externalConsole": true
|
||||
},
|
||||
]
|
||||
}
|
Reference in New Issue
Block a user