10dd79cf5e
* 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
30 lines
832 B
JSON
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
|
|
}
|
|
} |