aboutsummaryrefslogtreecommitdiffhomepage
path: root/vsprojects/make.bat
blob: 04737aeefc47d356dc79a0ff214c54287161dfa3 (plain)
1
2
3
4
5
6
7
8
9
10
@rem Convenience wrapper that runs specified gRPC target using Nmake
@rem Usage: make.bat TARGET_NAME

setlocal
@rem Set VS variables (uses Visual Studio 2013)
@call "%VS120COMNTOOLS%\..\..\vc\vcvarsall.bat" x86

nmake /f Grpc.mak %*
exit /b %ERRORLEVEL%
endlocal