2005-09-17 09:25:44 +00:00
|
|
|
target = 'VPatch'
|
|
|
|
|
|
|
|
examples = Split("""
|
|
|
|
example.nsi
|
|
|
|
newfile.txt
|
|
|
|
oldfile.txt
|
|
|
|
patch.pat
|
|
|
|
""")
|
|
|
|
|
|
|
|
docs = Split("""
|
|
|
|
Readme.html
|
|
|
|
""")
|
|
|
|
|
|
|
|
includes = Split("""
|
|
|
|
VPatchLib.nsh
|
|
|
|
""")
|
|
|
|
|
|
|
|
Import('defenv')
|
|
|
|
|
2006-01-21 09:54:23 +00:00
|
|
|
defenv.DistributeExamples(examples, path=target)
|
|
|
|
defenv.DistributeDocs(docs, path=target)
|
|
|
|
defenv.DistributeInclude(includes)
|