egami/lutin_egami-sample.py

46 lines
780 B
Python
Raw Permalink Normal View History

2016-07-13 22:27:54 +02:00
#!/usr/bin/python
import lutin.module as module
import lutin.tools as tools
def get_type():
return "BINARY"
def get_sub_type():
return "TEST"
def get_desc():
return "Test software for egami"
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>"]
def create(target, module_name):
my_module = module.Module(__file__, module_name, get_type())
2016-09-08 21:35:02 +02:00
my_module.add_depend(['egami', 'test-debug'])
2016-07-13 22:27:54 +02:00
my_module.add_src_file([
2016-07-19 22:24:23 +02:00
'sample/main.cpp',
'sample/read.cpp',
'sample/write.cpp'
2016-07-13 22:27:54 +02:00
])
my_module.copy_path('sample/read.bmp')
my_module.copy_path('sample/read.svg')
my_module.copy_path('sample/read.png')
return my_module