Created
May 6, 2019 12:20
-
-
Save papr/cee69604af30e97ce5104a9273ca421d to your computer and use it in GitHub Desktop.
VS Code launch files for Pupil Capture and Player
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
| { | |
| // 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": "Pupil Capture", | |
| "type": "python", | |
| "request": "launch", | |
| "program": "${workspaceFolder}/pupil_src/main.py", | |
| "console": "integratedTerminal", | |
| "subProcess": true, | |
| "args": [ | |
| "capture", | |
| ], | |
| }, | |
| { | |
| "name": "Pupil Player", | |
| "type": "python", | |
| "request": "launch", | |
| "program": "${workspaceFolder}/pupil_src/main.py", | |
| "console": "integratedTerminal", | |
| "subProcess": true, | |
| "args": [ | |
| "player", | |
| ], | |
| }, | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment