raylib/projects/VSCode/.vscode/launch.json

61 lines
1.9 KiB
JSON
Raw Normal View History

2018-07-31 12:26:52 +03:00
{
// 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": [
{
2018-10-24 22:35:03 +03:00
"name": "Debug",
2018-09-22 02:10:50 +03:00
"type": "cppdbg",
"request": "launch",
2020-04-13 13:07:05 +03:00
"program": "${workspaceFolder}/${fileBasenameNoExtension}",
2018-09-22 02:10:50 +03:00
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": false
}
],
2018-10-24 22:35:03 +03:00
"windows": {
2019-06-05 01:04:31 +03:00
"miDebuggerPath": "C:/raylib/mingw/bin/gdb.exe",
2018-10-24 22:35:03 +03:00
},
"osx": {
"MIMode": "lldb"
},
"linux": {
"miDebuggerPath": "/usr/bin/gdb",
},
"preLaunchTask": "build debug"
2018-09-22 02:10:50 +03:00
},
{
2018-10-24 22:35:03 +03:00
"name": "Run",
2018-09-22 02:10:50 +03:00
"type": "cppdbg",
"request": "launch",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
2020-04-13 13:07:05 +03:00
"program": "${workspaceFolder}/${fileBasenameNoExtension}",
2018-09-22 02:10:50 +03:00
"MIMode": "gdb",
2018-10-24 22:35:03 +03:00
"windows": {
2020-04-13 13:07:05 +03:00
"program": "${workspaceFolder}/${fileBasenameNoExtension}.exe",
2019-06-05 01:04:31 +03:00
"miDebuggerPath": "C:/raylib/mingw/bin/gdb.exe"
2018-10-24 22:35:03 +03:00
},
"osx": {
"MIMode": "lldb"
},
"linux": {
"miDebuggerPath": "/usr/bin/gdb"
},
"preLaunchTask": "build release",
2018-09-22 02:10:50 +03:00
}
2018-07-31 12:26:52 +03:00
]
}