diff options
author | Jose <jose@zeroc.com> | 2015-05-12 18:10:09 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2015-05-12 18:10:09 +0200 |
commit | d89ed7e6962209b81f3b235296a38608d1802219 (patch) | |
tree | d45d82aa3b17079c6e494150f8246031f5fd9027 /cpp/src/slice2confluence | |
parent | Update and cleanup Android Studio build (diff) | |
download | ice-d89ed7e6962209b81f3b235296a38608d1802219.tar.bz2 ice-d89ed7e6962209b81f3b235296a38608d1802219.tar.xz ice-d89ed7e6962209b81f3b235296a38608d1802219.zip |
Fixed ICE-6505 Allow to Sign C++ .exe/.dlls after build
Diffstat (limited to 'cpp/src/slice2confluence')
-rw-r--r-- | cpp/src/slice2confluence/Makefile.mak | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cpp/src/slice2confluence/Makefile.mak b/cpp/src/slice2confluence/Makefile.mak index 6a30b9f4529..dbef5b64c26 100644 --- a/cpp/src/slice2confluence/Makefile.mak +++ b/cpp/src/slice2confluence/Makefile.mak @@ -31,7 +31,9 @@ $(NAME): $(OBJS) Slice2Confluence.res $(LINK) $(LD_EXEFLAGS) $(PDBFLAGS) $(OBJS) $(SETARGV) $(PREOUT)$@ $(PRELIBS) \ $(BASELIBS) $(RES_FILE) @if exist $@.manifest echo ^ ^ ^ Embedding manifest using $(MT) && \ - $(MT) -nologo -manifest $@.manifest -outputresource:$@;#1 && del /q $@.manifest + $(MT) -nologo -manifest $@.manifest -outputresource:$@;#1 && del /q $@.manifest + @if defined SIGN_CERTIFICATE echo ^ ^ ^ Signing $@ && \ + signtool sign /f "$(SIGN_CERTIFICATE)" /p $(SIGN_PASSWORD) /t $(SIGN_TIMESTAMPSERVER) $@ clean:: del /q $(NAME:.exe=.*) |