Compare commits
2 Commits
68d2ce3205
...
3709d3d284
Author | SHA1 | Date |
---|---|---|
|
3709d3d284 | |
|
58ead967ff |
|
@ -54,7 +54,9 @@
|
|||
"--build",
|
||||
"build",
|
||||
"--target",
|
||||
"all"
|
||||
"all",
|
||||
"--",
|
||||
"-j${input:threadCount}"
|
||||
],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
|
@ -63,7 +65,7 @@
|
|||
"problemMatcher": [
|
||||
"$gcc"
|
||||
],
|
||||
"detail": "Build the project using CMake and Ninja."
|
||||
"detail": "Build the project using CMake with parallel compilation."
|
||||
}
|
||||
],
|
||||
"inputs": [
|
||||
|
@ -78,6 +80,12 @@
|
|||
],
|
||||
"default": "Ninja",
|
||||
"description": "The CMake generator to use."
|
||||
},
|
||||
{
|
||||
"type": "promptString",
|
||||
"id": "threadCount",
|
||||
"description": "Number of parallel compilation threads",
|
||||
"default": "8"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue