Skip to content

Commit

Permalink
Improve launch.json
Browse files Browse the repository at this point in the history
  • Loading branch information
helgoboss committed Nov 4, 2024
1 parent 09f8d6a commit da68913
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ modules.xml
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.env
!.vscode/launch.json
!.vscode/extensions.json

Expand Down
1 change: 1 addition & 0 deletions .vscode/launch.env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
HELGOBOX_LOG=warn
12 changes: 5 additions & 7 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
"request": "launch",
"program": "/home/helgoboss/opt/REAPER/reaper",
"args": [],
"cwd": "${workspaceFolder}"
"cwd": "${workspaceFolder}",
"envFile": "${workspaceFolder}/.vscode/launch.env"
},
{
"name": "Portable Windows 64-bit",
Expand All @@ -25,10 +26,7 @@
"args": ["-newinst"],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [
{"name": "HELGOBOX_LOG", "value": "debug,vst=info,hyper=trace"}
// {"name": "CONTROL_SURFACE_METRICS", "value": "true"}
]
"envFile": "${workspaceFolder}/.vscode/launch.env"
},
{
"name": "Portable Windows 32-bit",
Expand All @@ -38,7 +36,7 @@
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": []
"envFile": "${workspaceFolder}/.vscode/launch.env"
},
{
"name": "Global Windows 64-bit",
Expand All @@ -48,7 +46,7 @@
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": []
"envFile": "${workspaceFolder}/.vscode/launch.env"
},
{
"name": "Windows attach",
Expand Down

0 comments on commit da68913

Please sign in to comment.