cclang/.vscode/launch.json

59 lines
2.0 KiB
JSON
Raw Normal View History

2021-10-27 09:19:05 +02: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": [
{
"name": "Python: Aktuelle Datei",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"env": {
"PYTHONPATH": "${workspaceFolder}/src/:${workspaceFolder}/venv/bin/python"
}
},
{
"name": "CCL",
"type": "python",
"request": "launch",
"cwd": "/home/sven/Nextcloud_Sven/Schreibtisch/git_sh-edraft_de/sh_cclang/src/",
"program": "cc_lang_interpreter/main.py",
"console": "integratedTerminal",
"args": [
2021-10-27 09:21:40 +02:00
"First.ccl"
2021-10-27 09:19:05 +02:00
],
"env": {
"PYTHONPATH": "${workspaceFolder}/src/:${workspaceFolder}/venv/bin/python"
}
},
{
"name": "CCL: File",
"type": "python",
"request": "launch",
"cwd": "/home/sven/Nextcloud_Sven/Schreibtisch/git_sh-edraft_de/sh_cclang/src/",
"program": "cc_lang_interpreter/main.py",
"console": "integratedTerminal",
"args": [
"-p",
"../cc_code_preview"
],
"env": {
"PYTHONPATH": "${workspaceFolder}/src/:${workspaceFolder}/venv/bin/python"
}
},
{
"name": "CCL: Console",
"type": "python",
"request": "launch",
"cwd": "/home/sven/Nextcloud_Sven/Schreibtisch/git_sh-edraft_de/sh_cclang/src/",
"program": "cc_lang_interpreter/main.py",
"console": "integratedTerminal",
"args": [],
"env": {
"PYTHONPATH": "${workspaceFolder}/src/:${workspaceFolder}/venv/bin/python"
}
}
]
}