Qt installer not working with manifest file
-
Hi,
I'm doing an installer with Qt installer v1.4.0. (under Windows)
I try to add a manifest for having Administrator rights requested when opening the installer.
For this I use mt.exe like that :
mt -manifest client.manifest -outputresource:client.exe;#1
I don't have any errors, but after updating the exe my file is troncated from 18mo to 12mo and of course the installer don't work at all...
So I'm wondering if Qt installer is doing something strange that mt.exe don't understand, or what ??
Here's is my manifest :@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly manifestVersion="1.0">
<trustInfo >
<security>
<requestedPrivileges>
<requestedExecutionLevel level="requireAdministrator" uiAccess="false">
</requestedExecutionLevel>
</requestedPrivileges>
</security>
</trustInfo>
</compatibility>
</assembly>
@