Browse Source

Fix issigtool-only build option.

Martijn Laan 2 weeks ago
parent
commit
d16833e09c
1 changed files with 9 additions and 5 deletions
  1. 9 5
      compile-msbuild.bat

+ 9 - 5
compile-msbuild.bat

@@ -32,11 +32,15 @@ if errorlevel 1 goto failed
 cd Projects
 cd Projects
 if errorlevel 1 goto failed
 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
 if errorlevel 1 goto failed
 
 
 cd ..
 cd ..