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/slice2html | |
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/slice2html')
-rw-r--r-- | cpp/src/slice2html/Makefile.mak | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/src/slice2html/Makefile.mak b/cpp/src/slice2html/Makefile.mak index e3e52678e4c..ba16e8e6c59 100644 --- a/cpp/src/slice2html/Makefile.mak +++ b/cpp/src/slice2html/Makefile.mak @@ -31,6 +31,8 @@ $(NAME): $(OBJS) Slice2Html.res $(BASELIBS) $(RES_FILE) @if exist $@.manifest echo ^ ^ ^ Embedding manifest using $(MT) && \ $(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=.*) |