aboutsummaryrefslogtreecommitdiff
path: root/.vscode/tasks.json
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-10-17 17:07:55 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-10-17 17:07:55 +0200
commite0fab8139a4dd8a33e54cb7fdea85d2bd3feaeb9 (patch)
treed7cc1a2583899d4557e54a2b33dee342f0405a2e /.vscode/tasks.json
parentd21afe5b33b4cb3f5cf1917f4d15f402de41a032 (diff)
parentd9889e4501c1f3ebd649b81816e80d1b40d14c87 (diff)
Merge branch 'max/POC-ECS-memory-efficient' of github.com:lonkaars/crepe
Diffstat (limited to '.vscode/tasks.json')
-rw-r--r--.vscode/tasks.json6
1 files changed, 3 insertions, 3 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
index 19afa6f..b00cb77 100644
--- a/.vscode/tasks.json
+++ b/.vscode/tasks.json
@@ -9,8 +9,8 @@
"-G",
"Ninja",
"-B",
- "${workspaceFolder}/mwe/ecs-homemade/build", // Create build folder here
- "${workspaceFolder}/mwe/ecs-homemade" // Path to your source directory
+ "${workspaceFolder}/mwe/ecs-memory-efficient/build", // Create build folder here
+ "${workspaceFolder}/mwe/ecs-memory-efficient" // Path to your source directory
],
"group": {
"kind": "build",
@@ -24,7 +24,7 @@
"command": "cmake",
"args": [
"--build",
- "${workspaceFolder}/mwe/ecs-homemade/build" // Build directory
+ "${workspaceFolder}/mwe/ecs-memory-efficient/build" // Build directory
],
"dependsOn": "configure", // Ensure the configure task runs first
"group": {