
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3986 212acab6-be3b-0410-9dea-997c60f758d6
25 lines
396 B
Python
25 lines
396 B
Python
target = 'System'
|
|
|
|
files = Split("""
|
|
Source/Buffers.c
|
|
Source/Plugin.c
|
|
Source/System.c
|
|
""")
|
|
|
|
objs = Split("""
|
|
Source/chkstk.obj
|
|
Source/vc7ldvrm.obj
|
|
Source/vc7lmul.obj
|
|
Source/vc7lshl.obj
|
|
Source/vc7lshr.obj
|
|
""")
|
|
|
|
libs = Split("""
|
|
kernel32
|
|
user32
|
|
ole32
|
|
""")
|
|
|
|
Import('BuildPlugin')
|
|
|
|
BuildPlugin(target, files, libs, entry = '_DllMainCRTStartup', nodeflib = 0, defines = ['SYSTEM_EXPORTS'])
|