2007-04-23 21:41:24 +02:00
|
|
|
|
|
|
|
# - MYSQL_EMBED_MANIFEST(target_name required_privs)
|
|
|
|
# Create a manifest for target_name. Set the execution level to require_privs
|
|
|
|
#
|
|
|
|
# NOTE. PROCESSOR_ARCH must be defined before this MACRO is called.
|
|
|
|
|
|
|
|
MACRO(MYSQL_EMBED_MANIFEST _target_name _required_privs)
|
|
|
|
ADD_CUSTOM_COMMAND(
|
|
|
|
TARGET ${_target_name}
|
|
|
|
PRE_LINK
|
|
|
|
COMMAND cscript.exe
|
CMakeLists.txt (many), win/README, mysql_manifest.cmake, configure.js:
Additional changes for bug#29903
- Changed to do embedded build part as normal build, when
WITH_EMBEDDED_SERVER is set.
- Allow both normal and debug build with embedded.
- Build static embedded library by pointing out all source and compile
it all, i.e. not building libraries from libraries, not portable.
- Let embedded use generated files from the "sql" directory, added
dependencies to make sure built before embedded.
- Mark library "dbug" in TARGET_LINK_LIBRARIES() with "debug", so only
linked in when debug target is used.
- Removed change of target name with "mysqld${MYSQLD_EXE_SUFFIX}", as
others can't depend on it, not defined at configure time. Instead
set the output file name.
- Created work around for bug in CMake 2.4.6 and output names, to
set the "mysqld<suffix>.pdb" name to the same base name.
- Set the correct manifest "name" (patch by iggy)
2007-08-06 23:16:01 +02:00
|
|
|
ARGS "${PROJECT_SOURCE_DIR}/win/create_manifest.js" name=$(TargetName) version=${VERSION} arch=${PROCESSOR_ARCH} exe_level=${_required_privs} outfile=$(IntDir)\\$(TargetFileName).intermediate.manifest
|
2007-04-23 21:41:24 +02:00
|
|
|
COMMENT "Generates the contents of the manifest contents.")
|
|
|
|
ADD_CUSTOM_COMMAND(
|
|
|
|
TARGET ${_target_name}
|
|
|
|
POST_BUILD
|
2007-07-25 19:18:12 +02:00
|
|
|
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.")
|
2007-04-23 21:41:24 +02:00
|
|
|
ENDMACRO(MYSQL_EMBED_MANIFEST)
|