
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4093 212acab6-be3b-0410-9dea-997c60f758d6
26 lines
411 B
Python
26 lines
411 B
Python
target = 'VPatch'
|
|
|
|
files = Split("""
|
|
vpatchdll.c
|
|
""")
|
|
|
|
libs = Split("""
|
|
kernel32
|
|
""")
|
|
|
|
examples = Split("""
|
|
#Contrib/VPatch/example.nsi
|
|
#Contrib/VPatch/newfile.txt
|
|
#Contrib/VPatch/oldfile.txt
|
|
#Contrib/VPatch/patch.pat
|
|
""")
|
|
|
|
docs = Split("""
|
|
#Contrib/VPatch/Readme.html
|
|
""")
|
|
|
|
Import('BuildPlugin env')
|
|
|
|
BuildPlugin(target, files, libs, examples, docs)
|
|
|
|
env.Distribute('Bin', '#Contrib/VPatch/GenPat.exe')
|