2014-05-04 22:27:56 +02:00
|
|
|
#!/usr/bin/python
|
2016-10-04 23:41:29 +02:00
|
|
|
import lutin.debug as debug
|
2015-05-08 22:37:50 +02:00
|
|
|
import lutin.tools as tools
|
2014-05-04 22:27:56 +02:00
|
|
|
|
2015-10-14 21:21:03 +02:00
|
|
|
|
|
|
|
def get_type():
|
|
|
|
return "BINARY"
|
|
|
|
|
|
|
|
def get_sub_type():
|
|
|
|
return "TEST"
|
|
|
|
|
2014-05-04 22:27:56 +02:00
|
|
|
def get_desc():
|
|
|
|
return "e-net TEST test software for enet"
|
|
|
|
|
|
|
|
def get_licence():
|
2017-01-05 21:28:23 +01:00
|
|
|
return "MPL-2"
|
2015-10-14 21:21:03 +02:00
|
|
|
|
|
|
|
def get_compagny_type():
|
|
|
|
return "com"
|
|
|
|
|
|
|
|
def get_compagny_name():
|
|
|
|
return "atria-soft"
|
|
|
|
|
|
|
|
def get_maintainer():
|
2016-09-12 21:06:37 +02:00
|
|
|
return "authors.txt"
|
2015-10-14 21:21:03 +02:00
|
|
|
|
2016-10-04 23:41:29 +02:00
|
|
|
def configure(target, my_module):
|
|
|
|
my_module.add_path(".")
|
|
|
|
my_module.add_depend([
|
|
|
|
'enet',
|
2017-09-07 23:38:26 +02:00
|
|
|
'etest',
|
2016-10-04 23:41:29 +02:00
|
|
|
'test-debug'
|
|
|
|
])
|
2016-01-18 22:22:50 +01:00
|
|
|
my_module.add_src_file([
|
2016-05-02 22:14:07 +02:00
|
|
|
'test/main-server.cpp'
|
2016-01-18 22:22:50 +01:00
|
|
|
])
|
2016-10-04 23:41:29 +02:00
|
|
|
return True
|
2014-05-04 22:27:56 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|