66 lines
1.3 KiB
Python
66 lines
1.3 KiB
Python
#!/usr/bin/python
|
|
import lutin.debug as debug
|
|
import lutin.tools as tools
|
|
|
|
|
|
def get_type():
|
|
return "BINARY"
|
|
|
|
def get_sub_type():
|
|
return "TEST"
|
|
|
|
def get_desc():
|
|
return "e-tk test software"
|
|
|
|
def get_licence():
|
|
return "MPL-2"
|
|
|
|
def get_compagny_type():
|
|
return "com"
|
|
|
|
def get_compagny_name():
|
|
return "atria-soft"
|
|
|
|
def get_maintainer():
|
|
return "authors.txt"
|
|
|
|
def configure(target, my_module):
|
|
my_module.add_src_file([
|
|
'test/main.cpp',
|
|
'test/testFileSystem.cpp',
|
|
'test/testPath.cpp',
|
|
'test/testPermissions.cpp',
|
|
'test/testTheme.cpp',
|
|
"""
|
|
'test/ConstructDestruct.cpp',
|
|
'test/testColor.cpp',
|
|
'test/testFunction.cpp',
|
|
'test/testMapUnordered.cpp',
|
|
'test/testMap.cpp',
|
|
'test/testSet.cpp',
|
|
'test/testMatrix3x3.cpp',
|
|
'test/testRegExp.cpp',
|
|
'test/testTransform.cpp',
|
|
'test/testArray.cpp',
|
|
'test/testVector.cpp',
|
|
'test/testVector3_f.cpp',
|
|
'test/testArchive.cpp',
|
|
'test/testFSNode.cpp',
|
|
'test/testMatrix2x2.cpp',
|
|
'test/testQuaternion.cpp',
|
|
'test/testVector2_f.cpp',
|
|
'test/testString.cpp',
|
|
'test/testTrait.cpp',
|
|
'test/testThrow.cpp',
|
|
'test/testUTF8.cpp',
|
|
"""
|
|
])
|
|
my_module.add_depend([
|
|
'etk',
|
|
'etest',
|
|
'test-debug'
|
|
])
|
|
my_module.copy_path('data/*')
|
|
return True
|
|
|