audio-blockEngine/lutin_audio-block-engine-test.py
Edouard DUPIN c01b518f05 [DEV] set compilation back ...
- update ejson
- update ememory
- umdate lutin
- umdate ewol
- update gale
2016-10-04 21:20:40 +02:00

59 lines
1.2 KiB
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 "BINARY"
def get_name():
return "audio FX test"
def get_desc():
return "audio_block_engine_test : Audio interface FX system test example system"
def get_licence():
return "APACHE-2"
def get_compagny_type():
return "com"
def get_compagny_name():
return "atria-soft"
def get_maintainer():
return "authors.txt"
def get_version():
return "version.txt"
def create(target, module_name):
my_module = module.Module(__file__, module_name, get_type())
# basic GUI :
my_module.add_src_file([
'test/debug.cpp',
'test/Main.cpp',
'test/Windows.cpp',
])
# name of the dependency
my_module.add_depend(['ewol', 'audio-block-engine'])
my_module.add_path(tools.get_current_path(__file__))
my_module.copy_path("data/Font/Free*.ttf","fonts/")
my_module.copy_path("data/menu*","")
#if target.name=="MacOs":
# my_module.set_pkg("ICON", tools.get_current_path(__file__) + "/../data/icon.icns")
#else:
# my_module.set_pkg("ICON", tools.get_current_path(__file__) + "/../data/icon.png")
my_module.set_pkg("SECTION", ["Test"])
my_module.set_pkg("PRIORITY", "optional")
return my_module