Skip to content

Commit

Permalink
chore: fix launch configs
Browse files Browse the repository at this point in the history
  • Loading branch information
anacierdem committed Sep 28, 2024
1 parent 0cbd19f commit 3ff7e52
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
},

{
"type": "node",
"cwd": "${workspaceFolder}/src/",
"type": "cppvsdbg",
"request": "launch",
"name": "Tests",
"program": "${env:UNF_LOADER}",
Expand All @@ -38,12 +39,11 @@
"${workspaceFolder}/libdragon/tests/testrom.z64"
],
"preLaunchTask": "buildTests",
"outputCapture": "std",
"console": "integratedTerminal"
},

{
"cwd": "${workspaceFolder}/src/",
"cwd": "${workspaceFolder}/libdragon/tests",
"type": "cppvsdbg",
"request": "launch",
"name": "Tests (emu)",
Expand All @@ -54,7 +54,7 @@
},

{
"cwd": "${workspaceFolder}/src/",
"cwd": "${fileDirname}",
"type": "cppvsdbg",
"request": "launch",
"name": "Run selected example",
Expand Down

0 comments on commit 3ff7e52

Please sign in to comment.