diff options
author | Mike DePaulo <mikedep333@gmail.com> | 2014-09-01 16:32:31 -0400 |
---|---|---|
committer | Mike DePaulo <mikedep333@gmail.com> | 2014-09-01 16:32:31 -0400 |
commit | cf84b2dc07ef59c1adb4fe29789c7dbbbd35fbb4 (patch) | |
tree | 8c36cedd8c09e11cae12dd5a9d6c63118bd04cac /buildall.bat | |
parent | 8a8f50cdcfaf2c0f3c7a86e9156e92055a5e453a (diff) | |
download | vcxsrv-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.
Diffstat (limited to 'buildall.bat')
-rw-r--r-- | buildall.bat | 10 |
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
|