
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5175 212acab6-be3b-0410-9dea-997c60f758d6
30 lines
325 B
Python
30 lines
325 B
Python
target = 'NSISdl'
|
|
|
|
files = Split("""
|
|
asyncdns.cpp
|
|
connection.cpp
|
|
httpget.cpp
|
|
nsisdl.cpp
|
|
util.cpp
|
|
""")
|
|
|
|
libs = Split("""
|
|
kernel32
|
|
user32
|
|
advapi32
|
|
ws2_32
|
|
""")
|
|
|
|
docs = Split("""
|
|
License.txt
|
|
ReadMe.txt
|
|
""")
|
|
|
|
Import('BuildPlugin')
|
|
|
|
BuildPlugin(
|
|
target, files, libs,
|
|
docs = docs,
|
|
cppused = True,
|
|
nodeflib = False,
|
|
)
|