2016-05-17 22:14:02 +02:00
|
|
|
#!/usr/bin/python
|
2016-10-04 23:41:29 +02:00
|
|
|
import lutin.debug as debug
|
2016-05-17 22:14:02 +02:00
|
|
|
import lutin.tools as tools
|
|
|
|
|
|
|
|
|
|
|
|
def get_type():
|
|
|
|
return "BINARY"
|
|
|
|
|
|
|
|
def get_sub_type():
|
|
|
|
return "TOOLS"
|
|
|
|
|
|
|
|
def get_desc():
|
2016-06-20 23:07:25 +02:00
|
|
|
return "ZEUS test service"
|
2016-05-17 22:14:02 +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-09-08 21:35:02 +02:00
|
|
|
my_module.add_depend(['zeus'])
|
2016-05-17 22:14:02 +02:00
|
|
|
my_module.add_src_file([
|
|
|
|
'appl/debug.cpp',
|
2016-12-08 21:38:28 +01:00
|
|
|
'appl/main-test-service.cpp'
|
2016-05-17 22:14:02 +02:00
|
|
|
])
|
2016-10-04 23:41:29 +02:00
|
|
|
return True
|
2016-05-17 22:14:02 +02:00
|
|
|
|
|
|
|
|
|
|
|
|