2016-11-23 00:11:41 +01:00
|
|
|
#!/usr/bin/python
|
|
|
|
import lutin.debug as debug
|
|
|
|
import lutin.tools as tools
|
|
|
|
|
|
|
|
|
|
|
|
def get_type():
|
|
|
|
return "BINARY"
|
|
|
|
|
|
|
|
def get_sub_type():
|
|
|
|
return "TOOLS"
|
|
|
|
|
|
|
|
def get_desc():
|
|
|
|
return "ZEUS launcher of service module"
|
|
|
|
|
|
|
|
def get_licence():
|
2017-01-05 21:28:23 +01:00
|
|
|
return "MPL-2"
|
2016-11-23 00:11:41 +01:00
|
|
|
|
|
|
|
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([
|
|
|
|
'etk',
|
2016-11-24 21:56:24 +01:00
|
|
|
'zeus',
|
2016-11-23 00:11:41 +01:00
|
|
|
'elog'
|
|
|
|
])
|
|
|
|
my_module.add_src_file([
|
|
|
|
'appl/debug.cpp',
|
2016-12-08 21:38:28 +01:00
|
|
|
'appl/main-launcher.cpp'
|
2016-11-23 00:11:41 +01:00
|
|
|
])
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
|