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

42 lines
647 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',
'zeus-service-picture'
])
2016-05-13 23:10:13 +02:00
my_module.add_src_file([
'appl/debug.cpp',
'appl/main.cpp'
])
return True
2016-05-13 23:10:13 +02:00