diff options
author | Jan Tattermusch <jtattermusch@google.com> | 2015-04-20 10:00:38 -0700 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@google.com> | 2015-04-20 19:20:48 -0700 |
commit | 87d621bcf4fc51df200872a6cc345892f842d033 (patch) | |
tree | cadd46d234f34827e680c5a1e6edfd1a9305f683 /templates/vsprojects | |
parent | d169d60ba33e3d8b3d6a55152cf21610852a1bb4 (diff) |
fixes to Grpc.mak
Diffstat (limited to 'templates/vsprojects')
-rw-r--r-- | templates/vsprojects/Grpc.mak.template | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/templates/vsprojects/Grpc.mak.template b/templates/vsprojects/Grpc.mak.template index b761619d9b..95a28d0f98 100644 --- a/templates/vsprojects/Grpc.mak.template +++ b/templates/vsprojects/Grpc.mak.template @@ -61,11 +61,11 @@ WINSOCK_LIBS=ws2_32.lib ZLIB_LIBS=.\packages\${get_zlib()}\build\native\lib\v120\Win32\Debug\static\cdecl\zlib.lib LIBS=$(OPENSSL_LIBS) $(WINSOCK_LIBS) $(ZLIB_LIBS) -gpr_test_util: - MSBuild.exe gpr_test_util\gpr_test_util.vcxproj /p:Configuration=Debug +build_gpr_test_util: + msbuild grpc.sln /t:gpr_test_util /p:Configuration=Debug -grpc_test_util: - MSBuild.exe grpc_test_util\grpc_test_util.vcxproj /p:Configuration=Debug +build_grpc_test_util: + msbuild grpc.sln /t:grpc_test_util /p:Configuration=Debug $(OUT_DIR): mkdir $(OUT_DIR) @@ -87,7 +87,7 @@ ${target.name}.exe \ echo All tests built. % for target in buildable_targets: -${target.name}.exe: grpc_test_util $(OUT_DIR) +${target.name}.exe: build_grpc_test_util $(OUT_DIR) echo Building ${target.name} $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ \ %for source in target.src: |