zeus/tools/router/lutin_zeus-router.py

41 lines
679 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 router"
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', 'ejson'])
2016-05-13 23:10:13 +02:00
my_module.add_src_file([
'appl/debug.cpp',
2016-06-23 22:08:11 +02:00
'appl/ClientInterface.cpp',
'appl/GateWayInterface.cpp',
'appl/Router.cpp',
2016-05-13 23:10:13 +02:00
'appl/main.cpp'
])
return True
2016-05-13 23:10:13 +02:00