diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-17 17:07:55 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-17 17:07:55 +0200 |
commit | e0fab8139a4dd8a33e54cb7fdea85d2bd3feaeb9 (patch) | |
tree | d7cc1a2583899d4557e54a2b33dee342f0405a2e /.vscode/tasks.json | |
parent | d21afe5b33b4cb3f5cf1917f4d15f402de41a032 (diff) | |
parent | d9889e4501c1f3ebd649b81816e80d1b40d14c87 (diff) |
Merge branch 'max/POC-ECS-memory-efficient' of github.com:lonkaars/crepe
Diffstat (limited to '.vscode/tasks.json')
-rw-r--r-- | .vscode/tasks.json | 6 |
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": { |