dollar/lutin_dollar-bench-corpus.py

37 lines
571 B
Python

#!/usr/bin/python
import lutin.debug as debug
import lutin.tools as tools
def get_type():
return "BINARY"
def get_sub_type():
return "TOOL"
def get_desc():
return "Bench a corpus with a set of reference files"
def get_licence():
return "APACHE-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([
'tool/bench-corpus/main.cpp'
])
my_module.add_depend([
'dollar',
'test-debug',
])
return True