distribute nsis.exe.manifest for the nsis menu as it's dynamically linked
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5010 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
02d652d64a
commit
7b3240cd5c
2 changed files with 9 additions and 1 deletions
|
@ -64,6 +64,13 @@ if env['PLATFORM'] != 'win32' or os.environ.has_key('WXWIN'):
|
|||
cross_platform = True
|
||||
)
|
||||
|
||||
# manifest
|
||||
|
||||
if env.has_key('MSVS_VERSION'):
|
||||
if float(env['MSVS_VERSION'].replace('Exp','')) >= 8.0:
|
||||
manifest = env.SideEffect('%s.exe.manifest' % target, nsis_menu)
|
||||
env.DistributeBin(manifest, alias='install-utils')
|
||||
|
||||
# set directories
|
||||
|
||||
if nsis_menu[0].env['PLATFORM'] == 'win32':
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue