diff options
author | unknown <iggy@amd64.(none)> | 2007-06-26 11:26:01 -0400 |
---|---|---|
committer | unknown <iggy@amd64.(none)> | 2007-06-26 11:26:01 -0400 |
commit | f39d636a9224a1ffe06eb694996bf7d7adaeb3a8 (patch) | |
tree | e40a815223b24029ba705c3173b166d30c42f045 /win/mysql_manifest.cmake | |
parent | 37344c68f5c006c582b3f9793d7eb15102a5e807 (diff) | |
download | mariadb-git-f39d636a9224a1ffe06eb694996bf7d7adaeb3a8.tar.gz |
Bug#24732 Executables do not include Vista manifests
- Corrected manifest attributes.
CMakeLists.txt:
Bug#24732 Executables do not include Vista manifests
- Use correct value for 64 built binaries.
win/create_manifest.js:
Bug#24732 Executables do not include Vista manifests
- Remove type attribute as the only valid value is win32.
win/mysql_manifest.cmake:
Bug#24732 Executables do not include Vista manifests
- Remove type attribute.
Diffstat (limited to 'win/mysql_manifest.cmake')
-rwxr-xr-x | win/mysql_manifest.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/mysql_manifest.cmake b/win/mysql_manifest.cmake index b5bb6fda8fb..4c88be1d800 100755 --- a/win/mysql_manifest.cmake +++ b/win/mysql_manifest.cmake @@ -9,7 +9,7 @@ MACRO(MYSQL_EMBED_MANIFEST _target_name _required_privs) TARGET ${_target_name} PRE_LINK COMMAND cscript.exe - ARGS "${PROJECT_SOURCE_DIR}/win/create_manifest.js" name=$(ProjectName) version=${VERSION} arch=${PROCESSOR_ARCH} type=$(PlatformName) exe_level=${_required_privs} outfile=$(IntDir)\\$(TargetFileName).intermediate.manifest + ARGS "${PROJECT_SOURCE_DIR}/win/create_manifest.js" name=$(ProjectName) version=${VERSION} arch=${PROCESSOR_ARCH} exe_level=${_required_privs} outfile=$(IntDir)\\$(TargetFileName).intermediate.manifest COMMENT "Generates the contents of the manifest contents.") ADD_CUSTOM_COMMAND( TARGET ${_target_name} |