From c8d596c8633107467297778f925c7913f74ab72f Mon Sep 17 00:00:00 2001
From: Sanjay Salem <38601117+sanjaysalem17@users.noreply.github.com>
Date: Sat, 5 Feb 2022 13:33:23 -0600
Subject: [PATCH] added workspace folder

---
 .vscode/msvc/tasks.json | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.vscode/msvc/tasks.json b/.vscode/msvc/tasks.json
index 0303c00..ff4aa69 100644
--- a/.vscode/msvc/tasks.json
+++ b/.vscode/msvc/tasks.json
@@ -7,13 +7,13 @@
             "label": "Configure",
             "type": "shell",
             "group": "build",
-            "command": "runcmake_win.bat configure",
+            "command": "${workspaceFolder}/runcmake_win.bat configure",
             "problemMatcher": []    
         },
         {
             "label": "Build Release",
             "type": "shell",
-            "command": "runcmake_win.bat RelWithDebInfo",
+            "command": "${workspaceFolder}/runcmake_win.bat RelWithDebInfo",
             "args": [],
             "group": "build",
             "problemMatcher": "$msCompile"
@@ -21,11 +21,11 @@
         {
             "label": "Build Debug",
             "type": "shell",
-            "command": "runcmake_win.bat Debug",
+            "command": "${workspaceFolder}/runcmake_win.bat Debug",
             "args": [],
             "group": "build",
             "problemMatcher": "$msCompile"
         }
     ]
 }
-    
\ No newline at end of file
+    
-- 
GitLab