ewol/lutin_ewol-test.py

39 lines
604 B
Python
Raw Normal View History

2015-10-19 21:12:04 +02:00
#!/usr/bin/python
import lutin.debug as debug
2015-10-19 21:12:04 +02:00
import lutin.tools as tools
def get_type():
return "BINARY"
def get_sub_type():
return "TEST"
def get_desc():
return "ewol test software"
def get_licence():
return "APACHE-2"
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"
2015-10-19 21:12:04 +02:00
def configure(target, my_module):
2015-10-19 21:12:04 +02:00
my_module.add_src_file([
'test/main.cpp',
'test/testApplication.cpp',
'test/testWindows.cpp'
])
my_module.add_depend([
'ewol',
'gtest',
'test-debug'
])
return True
2015-10-19 21:12:04 +02:00