2016-04-01 23:27:11 +02:00
|
|
|
#!/usr/bin/python
|
2016-10-04 23:41:29 +02:00
|
|
|
import lutin.debug as debug
|
2016-04-01 23:27:11 +02:00
|
|
|
import lutin.tools as tools
|
|
|
|
|
|
|
|
|
|
|
|
def get_type():
|
|
|
|
return "BINARY"
|
|
|
|
|
|
|
|
def get_sub_type():
|
|
|
|
return "TOOL"
|
|
|
|
|
|
|
|
def get_desc():
|
|
|
|
return "audio algo drain tools"
|
|
|
|
|
|
|
|
def get_licence():
|
2017-01-05 21:28:23 +01:00
|
|
|
return "MPL-2"
|
2016-04-01 23:27:11 +02:00
|
|
|
|
|
|
|
def get_compagny_type():
|
|
|
|
return "com"
|
|
|
|
|
|
|
|
def get_compagny_name():
|
|
|
|
return "atria-soft"
|
|
|
|
|
|
|
|
def get_maintainer():
|
|
|
|
return ["Mr DUPIN Edouard <yui.heero@gmail.com>"]
|
|
|
|
|
2016-10-04 23:41:29 +02:00
|
|
|
def configure(target, my_module):
|
2016-04-01 23:27:11 +02:00
|
|
|
my_module.add_src_file([
|
2016-10-04 23:41:29 +02:00
|
|
|
'beamPattern.cpp'
|
|
|
|
])
|
2016-04-01 23:27:11 +02:00
|
|
|
my_module.compile_version("c++", 2011)
|
2016-10-04 23:41:29 +02:00
|
|
|
my_module.add_depend([
|
|
|
|
'm',
|
|
|
|
'etk',
|
|
|
|
'test-debug'
|
|
|
|
])
|
|
|
|
return True
|
2016-04-01 23:27:11 +02:00
|
|
|
|