51 lines
1.1 KiB
Python
51 lines
1.1 KiB
Python
|
#!/usr/bin/python
|
||
|
import lutin.module as module
|
||
|
import lutin.tools as tools
|
||
|
import lutin.debug as debug
|
||
|
import os
|
||
|
import lutin.multiprocess as lutinMultiprocess
|
||
|
|
||
|
|
||
|
def get_type():
|
||
|
return "LIBRARY"
|
||
|
|
||
|
def get_desc():
|
||
|
return "esignal is signal management for all class"
|
||
|
|
||
|
def get_licence():
|
||
|
return "APACHE-2"
|
||
|
|
||
|
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 [0,1,"dev"]
|
||
|
|
||
|
def create(target, module_name):
|
||
|
my_module = module.Module(__file__, module_name, get_type())
|
||
|
my_module.add_extra_compile_flags()
|
||
|
my_module.add_src_file([
|
||
|
'esignal/debug.cpp',
|
||
|
'esignal/Interface.cpp',
|
||
|
'esignal/Base.cpp'
|
||
|
])
|
||
|
my_module.add_header_file([
|
||
|
'esignal/debug.h',
|
||
|
'esignal/Interface.h',
|
||
|
'esignal/Base.h',
|
||
|
'esignal/Signal.h'
|
||
|
])
|
||
|
my_module.add_module_depend(['etk'])
|
||
|
my_module.add_path(tools.get_current_path(__file__))
|
||
|
my_module.compile_flags('c++', [
|
||
|
"-DESIGNAL_VERSION=\"\\\"" + tools.version_to_string(get_version()) + "\\\"\""
|
||
|
])
|
||
|
return my_module
|
||
|
|