2016-05-13 23:10:13 +02:00
|
|
|
#!/usr/bin/python
|
2016-10-04 23:41:29 +02:00
|
|
|
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():
|
2016-11-23 22:03:04 +01:00
|
|
|
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>"]
|
|
|
|
|
2016-10-04 23:41:29 +02:00
|
|
|
def configure(target, my_module):
|
|
|
|
my_module.add_path(".")
|
2016-11-21 22:15:46 +01:00
|
|
|
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',
|
2016-11-21 22:15:46 +01:00
|
|
|
'appl/GateWayInterface.cpp',
|
2016-11-23 22:03:04 +01:00
|
|
|
'appl/Router.cpp',
|
2016-05-13 23:10:13 +02:00
|
|
|
'appl/main.cpp'
|
|
|
|
])
|
2016-10-04 23:41:29 +02:00
|
|
|
return True
|
2016-05-13 23:10:13 +02:00
|
|
|
|
|
|
|
|
|
|
|
|