diff options
author | unknown <iggy@amd64.(none)> | 2007-07-25 13:23:27 -0400 |
---|---|---|
committer | unknown <iggy@amd64.(none)> | 2007-07-25 13:23:27 -0400 |
commit | 5401e2136900ed2ac8623b0ac82a3ff5a04553ab (patch) | |
tree | 6385e999e135e1cc005b8d87409d477865808122 /win/mysql_manifest.cmake | |
parent | 9e5390c20a8d05275364f7eba867be8073e20504 (diff) | |
parent | a34879ebd2c6c02f77a2df080c4696f0039ebffa (diff) | |
download | mariadb-git-5401e2136900ed2ac8623b0ac82a3ff5a04553ab.tar.gz |
Merge amd64.(none):/src/bug24732/my50-bug24732
into amd64.(none):/src/bug24732/my51-bug24732
BitKeeper/etc/ignore:
auto-union
BitKeeper/deleted/.del-CMakeLists.txt~1:
Auto merged
BitKeeper/deleted/.del-README~1:
Auto merged
Diffstat (limited to 'win/mysql_manifest.cmake')
-rwxr-xr-x | win/mysql_manifest.cmake | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/win/mysql_manifest.cmake b/win/mysql_manifest.cmake index 4c88be1d800..0d429e438d6 100755 --- a/win/mysql_manifest.cmake +++ b/win/mysql_manifest.cmake @@ -14,7 +14,8 @@ MACRO(MYSQL_EMBED_MANIFEST _target_name _required_privs) ADD_CUSTOM_COMMAND( TARGET ${_target_name} POST_BUILD - COMMAND mt.exe - ARGS -nologo -manifest $(IntDir)\\$(TargetFileName).intermediate.manifest -outputresource:$(TargetPath) - COMMENT "Embeds the manifest contents.") + COMMAND mt.exe ARGS -nologo -hashupdate -makecdfs -manifest $(IntDir)\\$(TargetFileName).intermediate.manifest -outputresource:$(TargetPath) + COMMAND makecat.exe ARGS $(IntDir)\\$(TargetFileName).intermediate.manifest.cdf + COMMAND signtool.exe ARGS sign /a /t http://timestamp.verisign.com/scripts/timstamp.dll $(TargetPath) + COMMENT "Embeds the manifest contents, creates a cryptographic catalog, signs the target with Authenticode certificate.") ENDMACRO(MYSQL_EMBED_MANIFEST) |