2005-04-16 18:48:50 +00:00
|
|
|
target = 'LangDLL'
|
|
|
|
|
|
|
|
files = Split("""
|
|
|
|
LangDLL.c
|
|
|
|
""")
|
|
|
|
|
|
|
|
resources = Split("""
|
|
|
|
resource.rc
|
|
|
|
""")
|
|
|
|
|
|
|
|
libs = Split("""
|
|
|
|
kernel32
|
|
|
|
user32
|
|
|
|
gdi32
|
|
|
|
""")
|
|
|
|
|
2005-04-22 16:51:00 +00:00
|
|
|
Import('BuildPlugin')
|
2005-04-16 18:48:50 +00:00
|
|
|
|
2005-04-22 16:51:00 +00:00
|
|
|
BuildPlugin(target, files, libs, res = resources)
|