diff options
author | Mike DePaulo <mikedep333@gmail.com> | 2014-09-01 16:32:31 -0400 |
---|---|---|
committer | Mike DePaulo <mikedep333@gmail.com> | 2015-05-09 19:23:25 -0400 |
commit | ebf9a7f2a99651b09720dd5bd6a1cf2d3224483f (patch) | |
tree | 9acdd7892288128bc735ec1f859d94368413a347 | |
parent | 731f7872c9ffed323a4323e50e83bd22aa7df49f (diff) | |
download | vcxsrv-ebf9a7f2a99651b09720dd5bd6a1cf2d3224483f.tar.gz vcxsrv-ebf9a7f2a99651b09720dd5bd6a1cf2d3224483f.tar.bz2 vcxsrv-ebf9a7f2a99651b09720dd5bd6a1cf2d3224483f.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.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
|