[DEV] Update new lutin 2.2.0 (no legacy support)

This commit is contained in:
2016-10-04 23:41:29 +02:00
parent 6a2e12c2ad
commit abc2ce6a49
6 changed files with 69 additions and 70 deletions

View File

@@ -1,5 +1,5 @@
#!/usr/bin/python
import lutin.module as module
import lutin.debug as debug
import lutin.tools as tools
@@ -24,13 +24,15 @@ def get_compagny_name():
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())
def configure(target, my_module):
my_module.add_src_file([
'read.cpp',
])
my_module.add_depend(['audio-river', 'etk'])
return my_module
'read.cpp',
])
my_module.add_depend([
'audio-river',
'etk'
])
return True