aboutsummaryrefslogtreecommitdiff
path: root/.vscode/tasks.json
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-10-17 17:12:27 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-10-17 17:12:27 +0200
commita50a3153be5214234db24a79ab4b706b37e132a0 (patch)
tree5302111f0dcb1e119141b5db706275768cc1849c /.vscode/tasks.json
parente0fab8139a4dd8a33e54cb7fdea85d2bd3feaeb9 (diff)
`make format`
Diffstat (limited to '.vscode/tasks.json')
-rw-r--r--.vscode/tasks.json38
1 files changed, 0 insertions, 38 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
deleted file mode 100644
index b00cb77..0000000
--- a/.vscode/tasks.json
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- "version": "2.0.0",
- "tasks": [
- {
- "label": "configure",
- "type": "shell",
- "command": "cmake",
- "args": [
- "-G",
- "Ninja",
- "-B",
- "${workspaceFolder}/mwe/ecs-memory-efficient/build", // Create build folder here
- "${workspaceFolder}/mwe/ecs-memory-efficient" // Path to your source directory
- ],
- "group": {
- "kind": "build",
- "isDefault": false
- },
- "problemMatcher": []
- },
- {
- "label": "build",
- "type": "shell",
- "command": "cmake",
- "args": [
- "--build",
- "${workspaceFolder}/mwe/ecs-memory-efficient/build" // Build directory
- ],
- "dependsOn": "configure", // Ensure the configure task runs first
- "group": {
- "kind": "build",
- "isDefault": true
- },
- "problemMatcher": ["$gcc"],
- "detail": "Generated task for building the project."
- }
- ]
-}