We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51205fb commit d8d5b26Copy full SHA for d8d5b26
1 file changed
utils/hct/hcttest.cmd
@@ -1,10 +1,16 @@
1
@echo off
2
setlocal ENABLEDELAYEDEXPANSION ENABLEEXTENSIONS
3
4
+rem Default build config is Debug
5
if "%BUILD_CONFIG%"=="" (
6
set BUILD_CONFIG=Debug
7
)
8
9
+rem Default build arch is x64
10
+if "%BUILD_ARCH%"=="" (
11
+ set BUILD_ARCH=x64
12
+)
13
+
14
rem Whether we built the project using ninja as the generator.
15
set GENERATOR_NINJA=0
16
0 commit comments