
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5157 212acab6-be3b-0410-9dea-997c60f758d6
38 lines
431 B
Python
38 lines
431 B
Python
target = 'System'
|
|
|
|
files = Split("""
|
|
Source/Buffers.c
|
|
Source/Plugin.c
|
|
Source/System.c
|
|
""")
|
|
|
|
libs = Split("""
|
|
kernel32
|
|
user32
|
|
ole32
|
|
""")
|
|
|
|
examples = Split("""
|
|
Resource.dll
|
|
System.nsi
|
|
System.nsh
|
|
SysFunc.nsh
|
|
""")
|
|
|
|
docs = Split("""
|
|
System.html
|
|
WhatsNew.txt
|
|
""")
|
|
|
|
Import('BuildPlugin')
|
|
|
|
BuildPlugin(
|
|
target,
|
|
files,
|
|
libs,
|
|
examples,
|
|
docs,
|
|
entry = '_DllMainCRTStartup',
|
|
nodeflib = False,
|
|
defines = ['SYSTEM_EXPORTS']
|
|
)
|