aboutsummaryrefslogtreecommitdiff
path: root/.vscode/tasks.json
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-10-10 07:04:27 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-10-10 07:04:27 +0200
commit29fb4bda4872bdfe33a2416a239fb62fc0238167 (patch)
tree367f8b32fc843b481b42dff54adfd0939afeb0b7 /.vscode/tasks.json
parent08d0b07c19edfe8c81dfe4e21c0d4c1ef128b628 (diff)
parentdcfb674ccdf48a7fd78c98644e5b3b826c399206 (diff)
merge `loek/scripts` into `master`
Diffstat (limited to '.vscode/tasks.json')
-rw-r--r--.vscode/tasks.json40
1 files changed, 25 insertions, 15 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
index 0fd5d23..19afa6f 100644
--- a/.vscode/tasks.json
+++ b/.vscode/tasks.json
@@ -1,28 +1,38 @@
{
+ "version": "2.0.0",
"tasks": [
{
- "type": "cppbuild",
- "label": "C/C++: g++ build active file",
- "command": "/usr/bin/g++",
+ "label": "configure",
+ "type": "shell",
+ "command": "cmake",
"args": [
- "-fdiagnostics-color=always",
- "-g",
- "${file}",
- "-o",
- "${fileDirname}/${fileBasenameNoExtension}"
+ "-G",
+ "Ninja",
+ "-B",
+ "${workspaceFolder}/mwe/ecs-homemade/build", // Create build folder here
+ "${workspaceFolder}/mwe/ecs-homemade" // Path to your source directory
],
- "options": {
- "cwd": "${fileDirname}"
+ "group": {
+ "kind": "build",
+ "isDefault": false
},
- "problemMatcher": [
- "$gcc"
+ "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
},
- "detail": "Task generated by Debugger."
+ "problemMatcher": ["$gcc"],
+ "detail": "Generated task for building the project."
}
- ],
- "version": "2.0.0"
+ ]
}