exml/lutin_exml-test.py

52 lines
978 B
Python
Raw Permalink Normal View History

2013-06-21 20:56:22 +02:00
#!/usr/bin/python
2019-05-03 10:18:22 +02:00
import realog.debug as debug
2015-05-08 22:41:54 +02:00
import lutin.tools as tools
2013-06-21 20:56:22 +02:00
2015-10-14 21:21:03 +02:00
def get_type():
return "BINARY"
def get_name():
return "exml_tester"
def get_sub_type():
return "TEST"
2013-12-23 22:38:46 +01:00
def get_desc():
return "e-xml test software"
2015-10-14 21:21:03 +02:00
def get_licence():
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"
2013-12-23 22:38:46 +01:00
def configure(target, my_module):
2015-09-24 21:44:04 +02:00
my_module.add_src_file([
'test/main.cpp',
'test/exmlTestAll.cpp',
'test/exmlTestComment.cpp',
'test/exmlTestElement.cpp',
'test/exmlTestAttribute.cpp',
'test/exmlTestCommon.cpp',
'test/exmlTestDeclaration.cpp',
'test/exmlTestDeclarationXML.cpp',
'test/exmlTestParseComment.cpp',
'test/exmlTestParseElement.cpp',
'test/exmlTestParseAttribute.cpp',
'test/exmlTestParseDeclaration.cpp'
])
my_module.add_depend([
'exml',
2017-09-07 23:38:26 +02:00
'etest',
'test-debug'
])
return True
2013-06-21 20:56:22 +02:00