aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike DePaulo <mikedep333@gmail.com>2014-09-01 16:32:31 -0400
committerMike DePaulo <mikedep333@gmail.com>2014-09-01 16:32:31 -0400
commitcf84b2dc07ef59c1adb4fe29789c7dbbbd35fbb4 (patch)
tree8c36cedd8c09e11cae12dd5a9d6c63118bd04cac
parent8a8f50cdcfaf2c0f3c7a86e9156e92055a5e453a (diff)
downloadvcxsrv-cf84b2dc07ef59c1adb4fe29789c7dbbbd35fbb4.tar.gz
vcxsrv-cf84b2dc07ef59c1adb4fe29789c7dbbbd35fbb4.tar.bz2
vcxsrv-cf84b2dc07ef59c1adb4fe29789c7dbbbd35fbb4.zip
Update buildall.bat to work with VS express edition. Note that I am not using buildall.bat to build currently.
-rw-r--r--buildall.bat10
1 files changed, 5 insertions, 5 deletions
diff --git a/buildall.bat b/buildall.bat
index 2cb1dc04e..be183c1d6 100644
--- a/buildall.bat
+++ b/buildall.bat
@@ -3,9 +3,9 @@ if %errorlevel% NEQ 0 goto nasmerror
echo on
-devenv.com freetype\freetypevc10.sln /build "Release Multithreaded|Win32"
+MSBuild.exe freetype\freetypevc10.sln /t:Build /p:Configuration="Release Multithreaded" /p:Platform=Win32
if %errorlevel% NEQ 0 goto end
-devenv.com freetype\freetypevc10.sln /build "Debug Multithreaded|Win32"
+MSBuild.exe freetype\freetypevc10.sln /t:Build /p:Configuration="Debug Multithreaded" /p:Platform=Win32
if %errorlevel% NEQ 0 goto end
cd openssl
perl Configure VC-WIN32
@@ -22,9 +22,9 @@ if %errorlevel% NEQ 0 goto end
nmake VC-static-debug
if %errorlevel% NEQ 0 goto end
cd ..
-devenv.com tools\mhmake\mhmakevc10.sln /build "Release|Win32"
+MSBuild.exe tools\mhmake\mhmakevc10.sln /t:Build /p:Configuration=Release /p:Platform=Win32
if %errorlevel% NEQ 0 goto end
-devenv.com tools\mhmake\mhmakevc10.sln /build "Debug|Win32"
+MSBuild.exe tools\mhmake\mhmakevc10.sln /t:Build /p:Configuration=Debug /p:Platform=Win32
if %errorlevel% NEQ 0 goto end
set MHMAKECONF=%~dp0
@@ -41,4 +41,4 @@ goto end
:nasmerror
echo Please put nasm in the path
-:end \ No newline at end of file
+:end