2
0
Эх сурвалжийг харах

Fix issigtool-only build option.

Martijn Laan 2 долоо хоног өмнө
parent
commit
d16833e09c
1 өөрчлөгдсөн 9 нэмэгдсэн , 5 устгасан
  1. 9 5
      compile-msbuild.bat

+ 9 - 5
compile-msbuild.bat

@@ -32,11 +32,15 @@ if errorlevel 1 goto failed
 cd Projects
 if errorlevel 1 goto failed
 
-if "%1"=="issigtool" goto issigtool
-if not "%1"=="" goto failed
-
-echo - Projects.groupproj
-msbuild.exe Projects.groupproj /t:Build /p:Config=Release /p:Platform=Win32
+if "%1"=="issigtool" (
+	set PROJ=ISSigTool.dproj
+) else (
+	if not "%1"=="" goto failed
+  set PROJ=Projects.groupproj
+)
+
+echo - %PROJ%
+msbuild.exe %PROJ% /t:Build /p:Config=Release /p:Platform=Win32
 if errorlevel 1 goto failed
 
 cd ..