[DEV] update new lutin 0.8.0
This commit is contained in:
parent
834ebad0b2
commit
39c244ff1a
@ -1,17 +1,34 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
import lutin.module as module
|
import lutin.module as module
|
||||||
import lutin.tools as tools
|
import lutin.tools as tools
|
||||||
|
import os
|
||||||
|
|
||||||
|
|
||||||
|
def get_type():
|
||||||
|
return "LIBRARY"
|
||||||
|
|
||||||
def get_desc():
|
def get_desc():
|
||||||
return "jvm basis call for all element who have jvm access"
|
return "jvm basis call for all element who have jvm access"
|
||||||
|
|
||||||
def create(target):
|
def get_licence():
|
||||||
# module name is 'edn' and type binary.
|
return "APACHE-2"
|
||||||
my_module = module.Module(__file__, 'jvm-basics', 'LIBRARY')
|
|
||||||
|
def get_compagny_type():
|
||||||
|
return "com"
|
||||||
|
|
||||||
|
def get_compagny_name():
|
||||||
|
return "atria-soft"
|
||||||
|
|
||||||
|
def get_maintainer():
|
||||||
|
return ["Mr DUPIN Edouard <yui.heero@gmail.com>"]
|
||||||
|
|
||||||
|
def get_version():
|
||||||
|
return [1,0]
|
||||||
|
|
||||||
|
def create(target, module_name):
|
||||||
|
my_module = module.Module(__file__, module_name, get_type())
|
||||||
my_module.add_module_depend(['etk'])
|
my_module.add_module_depend(['etk'])
|
||||||
# add extra compilation flags :
|
|
||||||
my_module.add_extra_compile_flags()
|
my_module.add_extra_compile_flags()
|
||||||
# add the file to compile:
|
|
||||||
my_module.add_src_file([
|
my_module.add_src_file([
|
||||||
'jvm-basics/debug.cpp',
|
'jvm-basics/debug.cpp',
|
||||||
'jvm-basics/jvm-basics.cpp'
|
'jvm-basics/jvm-basics.cpp'
|
||||||
@ -19,7 +36,7 @@ def create(target):
|
|||||||
my_module.add_header_file([
|
my_module.add_header_file([
|
||||||
'jvm-basics/jvm-basics.h'
|
'jvm-basics/jvm-basics.h'
|
||||||
])
|
])
|
||||||
my_module.compile_version_XX(2011)
|
my_module.compile_version("c++", 2011)
|
||||||
my_module.add_path(tools.get_current_path(__file__))
|
my_module.add_path(tools.get_current_path(__file__))
|
||||||
return my_module
|
return my_module
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user