vs-cfg: remove VS_HOST / VS_TOOLSET_HOST

They were added awhile ago in 67666ed for overcoming some win32 issues, which is not around anymore.
And now `VS_HOST` is never set (and therefore `VS_TOOLSET_HOST` is always empty too) and likely to be never used.
This commit is contained in:
Andrej730
2026-09-07 10:41:11 +05:00
parent 21691616fd
commit d399581f11
3 changed files with 2 additions and 19 deletions
+1 -5
View File
@@ -197,11 +197,7 @@ if defined USE_NINJA (
set ARCH_OPTION=-A %VS_PLATFORM%
)
IF NOT "%VS_TOOLSET_HOST%"=="" (
set VS_TOOLSET_OPTION=-T %VS_TOOLSET_HOST%
)
cmake.exe %CMAKELISTS_DIR% -G %GENERATOR% %ARCH_OPTION% %VS_TOOLSET_OPTION% ^
cmake.exe %CMAKELISTS_DIR% -G %GENERATOR% %ARCH_OPTION% ^
-DCMAKE_INSTALL_PREFIX="%CMAKE_INSTALL_PREFIX%" ^
-DWITH_ROCKSDB=On -DWITH_ZSTD=On ^
-DCMAKE_PREFIX_PATH="%CMAKE_PREFIX_PATH%" ^