2005-04-16 18:48:50 +00:00
|
|
|
target = 'NSISdl'
|
|
|
|
|
|
|
|
files = Split("""
|
|
|
|
asyncdns.cpp
|
|
|
|
connection.cpp
|
|
|
|
httpget.cpp
|
|
|
|
nsisdl.cpp
|
|
|
|
util.cpp
|
|
|
|
""")
|
|
|
|
|
|
|
|
libs = Split("""
|
|
|
|
kernel32
|
|
|
|
user32
|
|
|
|
advapi32
|
|
|
|
ws2_32
|
|
|
|
""")
|
|
|
|
|
2005-04-30 18:04:55 +00:00
|
|
|
docs = Split("""
|
|
|
|
ReadMe.txt
|
|
|
|
""")
|
|
|
|
|
2005-04-22 16:51:00 +00:00
|
|
|
Import('BuildPlugin')
|
2005-04-16 18:48:50 +00:00
|
|
|
|
2005-05-21 13:05:16 +00:00
|
|
|
BuildPlugin(target, files, libs, docs = docs, cppused = 1)
|