2015-04-21 21:08:38 +02:00
#!/usr/bin/python
2015-05-08 22:32:41 +02:00
import lutin . module as module
import lutin . tools as tools
import lutin . debug as debug
2015-04-21 21:08:38 +02:00
def get_desc ( ) :
2015-06-15 19:12:37 +02:00
return " drain basic algorithm "
2015-04-21 21:08:38 +02:00
def get_licence ( ) :
# return a table with : "Licence Name", contamination if link static, contamination if link dynamic, "Licence string description / FileName / auto for classicle licence"]
return [ " APACHE-2 " , False , False , " auto " ]
def create ( target ) :
2015-06-15 19:12:37 +02:00
myModule = module . Module ( __file__ , ' audio-algo-drain ' , ' LIBRARY ' )
2015-04-21 21:08:38 +02:00
myModule . add_src_file ( [
' audio/algo/drain/debug.cpp ' ,
' audio/algo/drain/BiQuad.cpp ' ,
' audio/algo/drain/BiQuadType.cpp ' ,
' audio/algo/drain/Equalizer.cpp '
] )
myModule . add_module_depend ( [ ' etk ' , ' audio ' ] )
myModule . add_export_path ( tools . get_current_path ( __file__ ) )
#myModule.set_licence(module.APACHE_2)
return myModule