aboutsummaryrefslogtreecommitdiffhomepage
path: root/vsprojects/vs2013
diff options
context:
space:
mode:
authorGravatar Yang Gao <yangg@google.com>2015-02-21 00:01:25 -0800
committerGravatar Yang Gao <yangg@google.com>2015-02-21 00:01:25 -0800
commitc5b9692e11d8de376a86437b58c6152eb5cff2fa (patch)
tree11ae237b1a9346d9e677d580729f63ecb1ada6e0 /vsprojects/vs2013
parent7db49ff5b4b15f660612d5bc0514093ed6d236ef (diff)
parent25380de72d8bb191a36fba21cfc6cbea461fc667 (diff)
Merge pull request #641 from jboeuf/jwt_id_token
Implementing JWT credentials (a.k.a JWT ID Tokens).
Diffstat (limited to 'vsprojects/vs2013')
-rw-r--r--vsprojects/vs2013/Grpc.mak8
1 files changed, 8 insertions, 0 deletions
diff --git a/vsprojects/vs2013/Grpc.mak b/vsprojects/vs2013/Grpc.mak
index a629ef425e..be0c0b8254 100644
--- a/vsprojects/vs2013/Grpc.mak
+++ b/vsprojects/vs2013/Grpc.mak
@@ -434,6 +434,14 @@ grpc_fetch_oauth2: grpc_fetch_oauth2.exe
echo Running grpc_fetch_oauth2
$(OUT_DIR)\grpc_fetch_oauth2.exe
+grpc_create_jwt.exe: grpc_test_util
+ echo Building grpc_create_jwt
+ $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\security\create_jwt.c
+ $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\grpc_create_jwt.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\create_jwt.obj
+grpc_create_jwt: grpc_create_jwt.exe
+ echo Running grpc_create_jwt
+ $(OUT_DIR)\grpc_create_jwt.exe
+
grpc_json_token_test.exe: grpc_test_util
echo Building grpc_json_token_test
$(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\security\json_token_test.c