2016-03-04 22:56:56 +01:00
|
|
|
#!/usr/bin/python
|
2016-10-04 23:41:29 +02:00
|
|
|
import lutin.debug as debug
|
2016-03-04 22:56:56 +01:00
|
|
|
import lutin.tools as tools
|
|
|
|
|
|
|
|
|
|
|
|
def get_type():
|
|
|
|
return "BINARY"
|
|
|
|
|
|
|
|
def get_sub_type():
|
|
|
|
return "TEST"
|
|
|
|
|
|
|
|
def get_desc():
|
|
|
|
return "e-property test software"
|
|
|
|
|
|
|
|
def get_licence():
|
2017-01-05 21:28:23 +01:00
|
|
|
return "MPL-2"
|
2016-03-04 22:56:56 +01: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"
|
2016-03-04 22:56:56 +01:00
|
|
|
|
2016-10-04 23:41:29 +02:00
|
|
|
def configure(target, my_module):
|
2016-03-04 22:56:56 +01:00
|
|
|
my_module.add_src_file([
|
2016-10-04 23:41:29 +02:00
|
|
|
'test/main.cpp',
|
|
|
|
'test/declareProperties.cpp',
|
|
|
|
'test/test_list.cpp',
|
|
|
|
'test/test_range.cpp',
|
|
|
|
'test/test_value.cpp'
|
|
|
|
])
|
|
|
|
my_module.add_depend([
|
|
|
|
'eproperty',
|
2017-09-07 23:38:26 +02:00
|
|
|
'etest',
|
2016-10-04 23:41:29 +02:00
|
|
|
'test-debug'
|
|
|
|
])
|
|
|
|
return True
|
2016-03-04 22:56:56 +01:00
|
|
|
|