NSIS/Contrib/Math/SConscript
2005-04-30 18:04:55 +00:00

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'])