[DEV] update new lutin 0.8.0

This commit is contained in:
2015-10-14 21:21:03 +02:00
parent 88c8178a72
commit 569d59e05a
20 changed files with 242 additions and 175 deletions

View File

@@ -7,7 +7,6 @@
#ifndef __ARW_TEMPORAL_VIEWER_H__
#define __ARW_TEMPORAL_VIEWER_H__
#include <audio/river/widget/debug.h>
#include <ewol/widget/Widget.h>
#include <ewol/compositing/Drawing.h>
#include <audio/river/river.h>

View File

@@ -4,20 +4,39 @@ import lutin.tools as tools
import lutin.debug as debug
import os
def get_type():
return "LIBRARY"
def get_desc():
return "audio specific widget"
def get_license():
return "APACHE v2.0"
def get_licence():
return "APACHE-2"
def create(target):
my_module = module.Module(__file__, 'audio-river-widget', '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 [0,0,0]
def create(target, module_name):
my_module = module.Module(__file__, module_name, get_type())
my_module.add_src_file([
'audio/river/widget/TemporalViewer.cpp',
'audio/river/widget/debug.cpp'
])
my_module.add_header_file([
'audio/river/widget/TemporalViewer.h'
])
my_module.add_module_depend(['ewol', 'audio-river'])
my_module.add_export_path(tools.get_current_path(__file__))
my_module.add_path(tools.get_current_path(__file__))
return my_module