2005-04-16 18:48:50 +00:00
|
|
|
target = "MakeLangId"
|
|
|
|
|
|
|
|
files = Split("""
|
|
|
|
MakeLangId.cpp
|
|
|
|
""")
|
|
|
|
|
2005-10-22 12:05:33 +00:00
|
|
|
res = Split("""
|
2005-04-16 18:48:50 +00:00
|
|
|
resource.rc
|
|
|
|
""")
|
|
|
|
|
2005-10-22 12:05:33 +00:00
|
|
|
resources = Split("""
|
|
|
|
MakeLangId.xml
|
|
|
|
""")
|
|
|
|
|
2005-04-16 18:48:50 +00:00
|
|
|
libs = Split("""
|
|
|
|
kernel32
|
|
|
|
user32
|
2006-10-16 11:23:51 +00:00
|
|
|
comctl32
|
2005-04-16 18:48:50 +00:00
|
|
|
""")
|
|
|
|
|
|
|
|
Import('BuildUtil')
|
2010-04-12 16:00:17 +00:00
|
|
|
Import('_tWinMain')
|
2005-04-16 18:48:50 +00:00
|
|
|
|
2010-04-12 16:00:17 +00:00
|
|
|
BuildUtil(target, files, libs, res = res, resources = resources, entry = _tWinMain)
|
2005-04-16 18:48:50 +00:00
|
|
|
|