
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4005 212acab6-be3b-0410-9dea-997c60f758d6
27 lines
368 B
Python
27 lines
368 B
Python
target = 'Math'
|
|
|
|
files = Split("""
|
|
Source/Math.c
|
|
Source/MyMath.c
|
|
Source/plugin.c
|
|
Source/mathcrt.lib
|
|
""")
|
|
|
|
libs = Split("""
|
|
kernel32
|
|
""")
|
|
|
|
examples = Split("""
|
|
math.nsi
|
|
mathtest.nsi
|
|
mathtest.ini
|
|
mathtest.txt
|
|
""")
|
|
|
|
docs = Split("""
|
|
Math.txt
|
|
""")
|
|
|
|
Import('BuildPlugin env')
|
|
|
|
BuildPlugin(target, files, libs, examples, docs, nodeflib = 0, flags = ['$CPP_FLAG'])
|