From 9eadbc3a5c6b8b3b6b2d1a08cf2a126d284e5b0b Mon Sep 17 00:00:00 2001 From: Shannen Saez Date: Wed, 26 Sep 2012 03:20:44 +1000 Subject: [PATCH] Fixed vcbuild.bat. gyp_uv was complaining because it never receives a value for which type of library to build (static vs shared). Basically just set the default to build a static library. --- vcbuild.bat | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/vcbuild.bat b/vcbuild.bat index 598e2052ca..12e5480aea 100644 --- a/vcbuild.bat +++ b/vcbuild.bat @@ -20,6 +20,7 @@ set run= set target_arch=ia32 set vs_toolset=x86 set platform=WIN32 +set library=static_library :next-arg if "%1"=="" goto args-done @@ -77,7 +78,7 @@ if errorlevel 1 goto gyp_install_failed goto have_gyp :gyp_install_failed -echo Failed to download gyp. Make sure you have subversion installed, or +echo Failed to download gyp. Make sure you have subversion installed, or echo manually install gyp into %~dp0build\gyp. goto exit @@ -113,7 +114,7 @@ echo running '%config%\%run%' goto exit :create-msvs-files-failed -echo Failed to create vc project files. +echo Failed to create vc project files. goto exit :help