aboutsummaryrefslogtreecommitdiff
path: root/.vscode
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
parentd21afe5b33b4cb3f5cf1917f4d15f402de41a032 (diff)
parentd9889e4501c1f3ebd649b81816e80d1b40d14c87 (diff)
Merge branch 'max/POC-ECS-memory-efficient' of github.com:lonkaars/crepe
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json2
-rw-r--r--.vscode/tasks.json6
2 files changed, 4 insertions, 4 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 160d242..69e3590 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -5,7 +5,7 @@
"name": "Debug with Ninja",
"type": "cppdbg",
"request": "launch",
- "program": "${workspaceFolder}/mwe/ecs-homemade/build/ecs-homemade.exe",
+ "program": "${workspaceFolder}/mwe/ecs-memory-efficient/build/ecs-memory-efficient.exe",
"args": [],
"stopAtEntry": true,
"cwd": "${workspaceFolder}",
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": {