get directories right

pull/3183/head
Craig Tiller 9 years ago
parent 5100ea0043
commit 0aeb7aa550
  1. 2
      tools/run_tests/run_tests.py
  2. 10
      vsprojects/build.bat

@ -478,7 +478,7 @@ if len(build_configs) > 1:
if platform.system() == 'Windows':
def make_jobspec(cfg, targets):
return [
jobset.JobSpec(['msbuild.exe',
jobset.JobSpec(['vsprojects\\build.bat',
'vsprojects\\%s.sln' % target,
'/m',
'/p:Configuration=%s' % _WINDOWS_CONFIG[cfg]],

@ -0,0 +1,10 @@
@rem Convenience wrapper that runs specified gRPC target using msbuild
@rem Usage: build.bat TARGET_NAME
setlocal
@rem Set VS variables (uses Visual Studio 2013)
@call "%VS120COMNTOOLS%\..\..\vc\vcvarsall.bat" x86
msbuild %*
exit /b %ERRORLEVEL%
endlocal
Loading…
Cancel
Save