Last active
April 26, 2020 15:23
-
-
Save h1romas4/2a266a51dedee11fd179c6e6546740f4 to your computer and use it in GitHub Desktop.
macOS clang/lldb の vscode 起動構成
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "lldb", | |
"request": "launch", | |
"name": "Debug megadrij", | |
"program": "${workspaceFolder}/megadrij64", | |
"args": [ | |
"megadrij", | |
"sonic2", | |
"-window", | |
"-resolution0", | |
"1024x768" | |
], | |
"cwd": "${workspaceFolder}" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment