48 lines
820 B
Python
48 lines
820 B
Python
#!/usr/bin/python
|
|
import lutin.module as module
|
|
import lutin.tools as tools
|
|
import lutin.debug as debug
|
|
import os
|
|
|
|
def get_type():
|
|
return "LIBRARY"
|
|
|
|
def get_name():
|
|
return "luwWrapper"
|
|
|
|
def get_desc():
|
|
return "luwWrapper : simple Lua automatic wrapper"
|
|
|
|
def get_licence():
|
|
return "MPL-2"
|
|
|
|
def get_compagny_type():
|
|
return "org"
|
|
|
|
def get_compagny_name():
|
|
return "Edouard DUPIN"
|
|
|
|
def get_maintainer():
|
|
return ["Mr DUPIN Edouard <yui.heero@gmail.com>"]
|
|
|
|
def get_version():
|
|
return [0,1,"dev"]
|
|
|
|
|
|
def configure(target, my_module):
|
|
my_module.add_extra_flags()
|
|
my_module.add_depend([
|
|
'lua',
|
|
'ememory'
|
|
])
|
|
my_module.add_src_file([
|
|
'luaWrapper/luaWrapperEtk.cpp',
|
|
])
|
|
my_module.add_header_file([
|
|
'luaWrapper/luaWrapper.hpp',
|
|
'luaWrapper/luaWrapperUtil.hpp',
|
|
])
|
|
return my_module
|
|
|
|
|