I find the SConscript in libs\wenbox directory looks not work at all.
In other words,The dll/lib file of yealinkwenbox can not beeb created.
If you want to create yealinkwenbox library file, please use Encolsed file to replace the SConscript in libs\wenbox.
Attention please rename enclosed file to SConscript .
[EMAIL PROTECTED] in china
2006-01-09
#####################################################
ylusbtel = WengoGetEnvironment()
files = [
'src/yealink/YLUSBTEL.lib',
'src/yealink/YLTELBOX.dll'
]
ylusbtel.WengoDeclareLibrary('ylusbtel', files)
#####################################################
env = WengoGetEnvironment()
libs = [
'shlibloader',
'util',
]
lib_path = []
include_path = ['include']
headers = []
sources = [
'src/Wenbox.cpp'
]
env.WengoAddIncludePath(include_path)
env.WengoUseLibraries(libs)
env.WengoAddDoxyfile()
env.WengoStaticLibrary('wenbox', sources)
#env.SConscript('src/null/SConscript')
#if WengoCCMSVC():
# env.SConscript('src/yealink/SConscript')
#####################################################
libs = [
'ylusbtel',
]
lib_path = [
'src/yealink',
]
include_path = []
defines = {
'WENBOX_DLL' : 1,
'BUILDING_DLL' : 1
}
headers = [
'src/yealink/YealinkWenbox.h',
'src/yealink/YLUSBTEL.h',
]
sources = [
'src/yealink/YealinkWenbox.cpp',
]
#env.WengoExportDefines(export_defines)
env.WengoAddDefines(defines)
env.WengoAddLibPath(lib_path)
env.WengoUseLibraries(libs)
print "************************* yealinkwenbox ***********************"
env.WengoSharedLibrary('yealinkwenbox', sources)
#env.WengoStaticLibrary('yealinkwenbox', sources)
#####################################################
_______________________________________________ Wengophone-devel mailing list [email protected] http://dev.openwengo.com/mailman/listinfo/wengophone-devel
