Files
WickedEngine/.vscode/tasks.json
T
Molasses 10dd79cf5e A few more Visual Studio Code/Codium changes (#462)
* Edited the `wicked-engine.sh` shebang

* Changed the shebang shell to `sh`

* Wrote the `settings.json` file and made build changes.

- The `settings.json` file contains various options to filter out
directories.
- The `tasks.json` file is a bit cleaner now.

* Removed the `settings.json` file
2022-06-14 10:36:00 +02:00

30 lines
832 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Build Debug",
"type": "shell",
"command": "cmake -B Build -DCMAKE_BUILD_TYPE=Debug; cmake --build Build -j$(nproc)",
"problemMatcher": ["cmake"],
"group": {
"kind": "build"
}
},
{
"label": "Build Release",
"type": "shell",
"command": "cmake -B Build -DCMAKE_BUILD_TYPE=Release; cmake --build Build -j$(nproc)",
"problemMatcher": ["cmake"],
"group": {
"kind": "build",
"isDefault": true
}
}
],
"CMake": {
"cmake.configureOnOpen": true,
"cmake.buildDirectory": "${workspaceFolder}/Build",
"cmake.buildTask": true
}
}