From 64c4850afd71662aff5d964fbfcb12dd135441bd Mon Sep 17 00:00:00 2001 From: Anton Tsvilikhovskiy Date: Thu, 17 Oct 2024 22:36:49 -0400 Subject: [PATCH] Add dll path for windows in launch config json (#3) --- .vscode/launch.json | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 9c753c8..e673dbf 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -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",