[DEV] update new lutin 0.8.0

This commit is contained in:
Edouard DUPIN 2015-10-14 21:21:03 +02:00
parent 5ced921acb
commit 0713f02829

View File

@ -6,12 +6,9 @@ import os
def get_desc():
return "Ewol C Interpreter"
def create(target):
# module name is 'edn' and type binary.
myModule = module.Module(__file__, 'eci2', 'BINARY')
# add extra compilation flags :
def create(target, module_name):
myModule = module.Module(__file__, module_name, 'BINARY')
myModule.add_extra_compile_flags()
# add the file to compile:
myModule.add_src_file([
'eci/eci.cpp',
'eci/Lexer.cpp',