Skip to content

Commit

Permalink
Add dll path for windows in launch config json (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
antontsvil authored Oct 18, 2024
1 parent c8ddb68 commit 64c4850
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,16 @@
"request": "launch",
"program": "${workspaceRoot}/RogueCastle/bin/x64/Debug/net40/RogueLegacy.exe",
"cwd": "${workspaceRoot}/RogueCastle/bin/x64/Debug/net40/",
"env": {
"LD_LIBRARY_PATH": "${workspaceRoot}/fnalibs3/lib64/"
}
"linux": {
"env": {
"LD_LIBRARY_PATH": "${workspaceRoot}/fnalibs3/lib64/"
}
},
"windows": {
"env": {
"PATH": "${workspaceRoot}/fnalibs3/x64/;${env:PATH}"
}
},
},
{
"name": "Attach",
Expand Down

0 comments on commit 64c4850

Please sign in to comment.