zeus/test/client/lutin_zeus-test-client.py

43 lines
686 B
Python
Raw Normal View History

2016-05-13 23:10:13 +02:00
#!/usr/bin/python
import lutin.debug as debug
2016-05-13 23:10:13 +02:00
import lutin.tools as tools
def get_type():
return "BINARY"
def get_sub_type():
return "TOOLS"
def get_desc():
return "ZEUS generic gateway"
2016-05-13 23:10:13 +02:00
def get_licence():
return "APACHE-2"
def get_compagny_type():
return "com"
def get_compagny_name():
return "atria-soft"
def get_maintainer():
return ["Mr DUPIN Edouard <yui.heero@gmail.com>"]
def configure(target, my_module):
my_module.add_path(".")
my_module.add_depend([
'zeus',
2016-11-28 21:29:45 +01:00
'zeus-service-user',
2016-12-28 15:34:05 +01:00
'zeus-service-picture',
'zeus-service-video'
])
2016-05-13 23:10:13 +02:00
my_module.add_src_file([
'appl/debug.cpp',
'appl/main-test-client.cpp'
2016-05-13 23:10:13 +02:00
])
return True
2016-05-13 23:10:13 +02:00