added manifest for xp style
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4354 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
2513f74699
commit
5375d9220c
3 changed files with 22 additions and 2 deletions
10
Contrib/MakeLangId/MakeLangId.xml
Normal file
10
Contrib/MakeLangId/MakeLangId.xml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
|
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
||||||
|
<assemblyIdentity version="1.0.0.0" processorArchitecture="X86" name="Nullsoft.NSIS.MakeLangId" type="win32"/>
|
||||||
|
<description>MakeLangId</description>
|
||||||
|
<dependency>
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="X86" publicKeyToken="6595b64144ccf1df" language="*" />
|
||||||
|
</dependentAssembly>
|
||||||
|
</dependency>
|
||||||
|
</assembly>
|
|
@ -4,10 +4,14 @@ files = Split("""
|
||||||
MakeLangId.cpp
|
MakeLangId.cpp
|
||||||
""")
|
""")
|
||||||
|
|
||||||
resources = Split("""
|
res = Split("""
|
||||||
resource.rc
|
resource.rc
|
||||||
""")
|
""")
|
||||||
|
|
||||||
|
resources = Split("""
|
||||||
|
MakeLangId.xml
|
||||||
|
""")
|
||||||
|
|
||||||
libs = Split("""
|
libs = Split("""
|
||||||
kernel32
|
kernel32
|
||||||
user32
|
user32
|
||||||
|
@ -15,5 +19,5 @@ libs = Split("""
|
||||||
|
|
||||||
Import('BuildUtil')
|
Import('BuildUtil')
|
||||||
|
|
||||||
BuildUtil(target, files, libs, res = resources, entry = 'WinMain', install = 'Bin')
|
BuildUtil(target, files, libs, res = res, resources = resources, entry = 'WinMain', install = 'Bin')
|
||||||
|
|
||||||
|
|
|
@ -40,6 +40,12 @@ BEGIN
|
||||||
LTEXT "",IDC_RESULT,7,41,121,8
|
LTEXT "",IDC_RESULT,7,41,121,8
|
||||||
END
|
END
|
||||||
|
|
||||||
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
|
//
|
||||||
|
// RT_MANIFEST
|
||||||
|
//
|
||||||
|
|
||||||
|
1 RT_MANIFEST "MakeLangId.xml"
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue