Compare commits

..

No commits in common. "3709d3d28485f84ef2502fb38cc93d23c1409606" and "68d2ce320545332bf57beb1a36e2192ceb518919" have entirely different histories.

2 changed files with 43 additions and 51 deletions

12
.vscode/tasks.json vendored
View File

@ -54,9 +54,7 @@
"--build", "--build",
"build", "build",
"--target", "--target",
"all", "all"
"--",
"-j${input:threadCount}"
], ],
"group": { "group": {
"kind": "build", "kind": "build",
@ -65,7 +63,7 @@
"problemMatcher": [ "problemMatcher": [
"$gcc" "$gcc"
], ],
"detail": "Build the project using CMake with parallel compilation." "detail": "Build the project using CMake and Ninja."
} }
], ],
"inputs": [ "inputs": [
@ -80,12 +78,6 @@
], ],
"default": "Ninja", "default": "Ninja",
"description": "The CMake generator to use." "description": "The CMake generator to use."
},
{
"type": "promptString",
"id": "threadCount",
"description": "Number of parallel compilation threads",
"default": "8"
} }
] ]
} }