ejson/lutin_ejson-test.py

41 lines
617 B
Python
Raw Normal View History

#!/usr/bin/python
import lutin.debug as debug
2015-05-08 22:37:25 +02:00
import lutin.tools as tools
2015-10-14 21:21:03 +02:00
def get_type():
return "BINARY"
def get_sub_type():
return "TEST"
def get_name():
return "e-json-test"
2013-12-23 22:38:46 +01:00
def get_desc():
return "e-json test application"
2015-10-14 21:21:03 +02:00
def get_licence():
return "APACHE-2"
def get_compagny_type():
return "com"
def get_compagny_name():
return "atria-soft"
def get_maintainer():
return ["Mr DUPIN Edouard <yui.heero@gmail.com>"]
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/test.cpp'
])
my_module.add_depend([
'ejson',
'gtest',
'test-debug'
])
return True