aboutsummaryrefslogtreecommitdiff
path: root/.vscode/tasks.json
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-11-04 08:28:18 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-11-04 08:28:18 +0100
commit06f65659fc6ffde7cabd2135040cbfbf089e5a24 (patch)
treee3570bea52b87b6919550ee81d17927ccbc11cc5 /.vscode/tasks.json
parent128969619a22dfc17a9ea35335c0d21c6ad0c954 (diff)
parent6aa8fdd04728b6a499f526de727514ae3d0490b4 (diff)
merge `origin/master` into `master`
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 19afa6f..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-homemade/build", // Create build folder here
- "${workspaceFolder}/mwe/ecs-homemade" // Path to your source directory
- ],
- "group": {
- "kind": "build",
- "isDefault": false
- },
- "problemMatcher": []
- },
- {
- "label": "build",
- "type": "shell",
- "command": "cmake",
- "args": [
- "--build",
- "${workspaceFolder}/mwe/ecs-homemade/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."
- }
- ]
-}