[DEV] Update new lutin 2.2.0 (no legacy support)
This commit is contained in:
parent
0713f02829
commit
db109fe7a5
@ -3,13 +3,24 @@ import lutin.module as module
|
|||||||
import lutin.tools as tools
|
import lutin.tools as tools
|
||||||
import os
|
import os
|
||||||
|
|
||||||
|
def get_type():
|
||||||
|
return "LIBRARY"
|
||||||
|
|
||||||
def get_desc():
|
def get_desc():
|
||||||
return "Ewol C Interpreter"
|
return "Ewol C Interpreter"
|
||||||
|
|
||||||
def create(target, module_name):
|
def get_licence():
|
||||||
myModule = module.Module(__file__, module_name, 'BINARY')
|
return "APACHE-2"
|
||||||
myModule.add_extra_compile_flags()
|
|
||||||
myModule.add_src_file([
|
def get_compagny_type():
|
||||||
|
return "com"
|
||||||
|
|
||||||
|
def get_compagny_name():
|
||||||
|
return "atria-soft"
|
||||||
|
|
||||||
|
def configure(target, my_module):
|
||||||
|
my_module.add_extra_flags()
|
||||||
|
my_module.add_src_file([
|
||||||
'eci/eci.cpp',
|
'eci/eci.cpp',
|
||||||
'eci/Lexer.cpp',
|
'eci/Lexer.cpp',
|
||||||
'eci/debug.cpp',
|
'eci/debug.cpp',
|
||||||
@ -25,7 +36,7 @@ def create(target, module_name):
|
|||||||
'eci/lang/ParserCpp.cpp',
|
'eci/lang/ParserCpp.cpp',
|
||||||
'eci/lang/ParserJS.cpp'
|
'eci/lang/ParserJS.cpp'
|
||||||
])
|
])
|
||||||
myModule.add_export_path(tools.get_current_path(__file__))
|
my_module.add_path(".", export=True)
|
||||||
myModule.add_module_depend('etk')
|
my_module.add_depend('etk')
|
||||||
return myModule
|
return True
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user