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

This commit is contained in:
Edouard DUPIN 2016-10-04 23:41:29 +02:00
parent 84feefdf88
commit 97d0d12405

View File

@ -1,5 +1,5 @@
#!/usr/bin/python
import lutin.module as module
import lutin.debug as debug
import lutin.tools as tools
@ -18,8 +18,7 @@ def get_maintainer():
def get_version():
return [0,5]
def create(target, module_name):
my_module = module.Module(__file__, module_name, get_type())
def configure(target, my_module):
my_module.add_src_file([
'edtaa3/edtaa3func.c'
])
@ -31,7 +30,6 @@ def create(target, module_name):
'c',
'm'
])
my_module.add_path(tools.get_current_path(__file__))
return my_module
return True