Skip to content

Commit d8d5b26

Browse files
authored
Set BUILD_ARCH to x64 by default if none is specified (#4510)
1 parent 51205fb commit d8d5b26

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

utils/hct/hcttest.cmd

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
@echo off
22
setlocal ENABLEDELAYEDEXPANSION ENABLEEXTENSIONS
33

4+
rem Default build config is Debug
45
if "%BUILD_CONFIG%"=="" (
56
set BUILD_CONFIG=Debug
67
)
78

9+
rem Default build arch is x64
10+
if "%BUILD_ARCH%"=="" (
11+
set BUILD_ARCH=x64
12+
)
13+
814
rem Whether we built the project using ninja as the generator.
915
set GENERATOR_NINJA=0
1016

0 commit comments

Comments
 (0)