From 7cafd8b10549c6af62076c188beef498bbde1484 Mon Sep 17 00:00:00 2001 From: Igor Zinkovsky Date: Mon, 15 Aug 2011 14:48:52 -0700 Subject: [PATCH] update vcbuild.bat with correct sln file --- vcbuild.bat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vcbuild.bat b/vcbuild.bat index 5b7fa1ae..466d1ba5 100644 --- a/vcbuild.bat +++ b/vcbuild.bat @@ -41,11 +41,11 @@ if defined noprojgen goto msbuild @rem Generate the VS project. call create-msvs-files.bat if errorlevel 1 goto create-msvs-files-failed -if not exist all.sln goto create-msvs-files-failed +if not exist uv.sln goto create-msvs-files-failed :msbuild @rem Build the sln with msbuild. -msbuild all.sln /t:%target% /p:Configuration=%config% /clp:NoSummary;NoItemAndPropertyList;Verbosity=minimal /nologo +msbuild uv.sln /t:%target% /p:Configuration=%config% /clp:NoSummary;NoItemAndPropertyList;Verbosity=minimal /nologo if errorlevel 1 goto exit :run