Windows build script: Remove unnecessary multithread build flag.

This commit is contained in:
Jammyjamjamman 2021-06-17 19:19:33 +01:00 committed by James Sherratt
parent 6723924b5b
commit e9b554c2b4
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ $buildFolder = $(Join-Path $PSScriptRoot build)
$topLevelTargetDir = $(Resolve-Path $(Join-Path $PSScriptRoot ../../)).ToString()
cmake --no-warn-unused-cli -DCMAKE_TOOLCHAIN_FILE:STRING=$toolchainPath -DCMAKE_EXPORT_COMPILE_COMMANDS:BOOL=TRUE "-H$topLevelTargetDir" "-B$buildFolder" -G "Visual Studio 16 2019" -T host=x64 -A x64
cmake --build $buildFolder --config Release --target ALL_BUILD -j 18
cmake --build $buildFolder --config Release --target ALL_BUILD
""
if ($?) {