Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(238)

Unified Diff: visual_studio/NativeClientVSAddIn/build.bat

Issue 14122017: [VS Addin] Add visual studio 2012 support (Closed) Base URL: https://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: visual_studio/NativeClientVSAddIn/build.bat
diff --git a/visual_studio/NativeClientVSAddIn/build.bat b/visual_studio/NativeClientVSAddIn/build.bat
index c72b67a2e087b26141fbdd71458e1969665ec270..d2219d8a4fe51259464002e4e10704056d5f6495 100755
--- a/visual_studio/NativeClientVSAddIn/build.bat
+++ b/visual_studio/NativeClientVSAddIn/build.bat
@@ -6,6 +6,11 @@ set BUILD_ERRORLEVEL=
call "%VS100COMNTOOLS%vsvars32.bat"
msbuild "%~dp0NativeClientVSAddIn.sln"
if %ERRORLEVEL% NEQ 0 goto endbuild
+
+call "%VS110COMNTOOLS%vsvars32.bat"
+msbuild "%~dp0NativeClientVSAddIn_2012.sln"
+if %ERRORLEVEL% NEQ 0 goto endbuild
+
python "%~dp0create_package.py"
endlocal & set BUILD_ERRORLEVEL=%ERRORLEVEL%

Powered by Google App Engine
This is Rietveld 408576698