34 lines
532 B
Python
34 lines
532 B
Python
#!/usr/bin/python
|
|
import lutin.module as module
|
|
import lutin.tools as tools
|
|
|
|
def get_desc():
|
|
return "Test software for egami"
|
|
|
|
def get_licence():
|
|
return {
|
|
"assimilate":"APACHE2",
|
|
"type":"APACHE-2.0"
|
|
}
|
|
|
|
def create(target):
|
|
my_module = module.Module(__file__, 'egami-test', 'BINARY')
|
|
|
|
my_module.add_module_depend(['egami', 'gtest', 'test-debug'])
|
|
|
|
my_module.add_src_file([
|
|
'test/main.cpp'
|
|
])
|
|
|
|
my_module.add_export_path(tools.get_current_path(__file__))
|
|
|
|
# add the currrent module at the
|
|
return my_module
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|