Created
April 28, 2019 01:43
-
-
Save sl/3a9880681173305ecc68e9fb18d03904 to your computer and use it in GitHub Desktop.
[Swift Complier Environment Configuration] Debug Launch
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", | |
"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