
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3986 212acab6-be3b-0410-9dea-997c60f758d6
16 lines
242 B
Python
16 lines
242 B
Python
target = 'Math'
|
|
|
|
files = Split("""
|
|
Source/Math.c
|
|
Source/MyMath.c
|
|
Source/plugin.c
|
|
Source/mathcrt.lib
|
|
""")
|
|
|
|
libs = Split("""
|
|
kernel32
|
|
""")
|
|
|
|
Import('BuildPlugin env')
|
|
|
|
BuildPlugin(target, files, libs, nodeflib = 0, flags = env['CPP_FLAG'])
|