Skip to content

Instantly share code, notes, and snippets.

@sl
Created April 28, 2019 01:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sl/3a9880681173305ecc68e9fb18d03904 to your computer and use it in GitHub Desktop.
Save sl/3a9880681173305ecc68e9fb18d03904 to your computer and use it in GitHub Desktop.
[Swift Complier Environment Configuration] Debug Launch
{
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug",
"program": "${env:SWIFT_BUILD_DIR}/bin/swift",
"args": ["${input:testFile}"],
"cwd": "${env:SWIFT_EXAMPLES_DIR}",
"stopOnEntry": false,
}
],
"inputs": [
{
"id": "testFile",
"type": "promptString",
"description": "The file to run the compiler on."
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment