Skip to content

Commit

Permalink
Sign exe files
Browse files Browse the repository at this point in the history
  • Loading branch information
(no author) committed Jan 10, 2010
1 parent 15ddcb7 commit 1235afe
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
8 changes: 7 additions & 1 deletion codesign.cmd
Expand Up @@ -13,14 +13,20 @@ echo File: %FILENAME%


set /P PASSWORD=Enter Password for code signing certificate: set /P PASSWORD=Enter Password for code signing certificate:


:sign
echo Signing %FILENAME%...
%SDKBASE%\bin\signtool sign /f %CODESIGNINGCERT% /p %PASSWORD% /t http://timestamp.comodoca.com/authenticode /d %DESCRIPTION% %FILENAME% %SDKBASE%\bin\signtool sign /f %CODESIGNINGCERT% /p %PASSWORD% /t http://timestamp.comodoca.com/authenticode /d %DESCRIPTION% %FILENAME%


shift
set FILENAME=%2%
if '%FILENAME%' NEQ '' goto sign

goto exit goto exit


:usage :usage
echo. echo.
echo Usage: echo Usage:
echo %0 description file echo %0 description files...
echo. echo.
goto exit goto exit


Expand Down
5 changes: 4 additions & 1 deletion makefile.cfix
Expand Up @@ -207,7 +207,10 @@ docs:
# Installer. # Installer.
# #
#---------------------------------------------------------------------- #----------------------------------------------------------------------
installer: docs signbinaries:
codesign.cmd "Visual Assert" bin\fre\i386\cfixhs32.exe bin\fre\amd64\cfixhs64.exe

installer: signbinaries docs
cd installer cd installer
$(MAKE) clean VisualAssert.msi $(MAKE) clean VisualAssert.msi
cd .. cd ..
Expand Down

0 comments on commit 1235afe

Please sign in to comment.