[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 0bb15fcab4
commit 885d1facc2

View File

@ -1,5 +1,4 @@
#!/usr/bin/python #!/usr/bin/python
import lutin.module as module
import lutin.tools as tools import lutin.tools as tools
import lutin.debug as debug import lutin.debug as debug
@ -25,8 +24,7 @@ def get_maintainer():
def get_version(): def get_version():
return "version.txt" return "version.txt"
def create(target, module_name): def configure(target, my_module):
my_module = module.Module(__file__, module_name, get_type())
# System core # System core
my_module.add_src_file([ my_module.add_src_file([
'audio/ess/debug.cpp', 'audio/ess/debug.cpp',
@ -49,7 +47,7 @@ def create(target, module_name):
# TODO : Change this ... # TODO : Change this ...
my_module.add_export_flag('c++', ["-pthread", "-frtti", "-fexceptions"]) my_module.add_export_flag('c++', ["-pthread", "-frtti", "-fexceptions"])
my_module.add_path(tools.get_current_path(__file__)) my_module.add_path(".")
return my_module return True