[DEV] update next lutin version

This commit is contained in:
Edouard DUPIN 2015-09-24 21:44:04 +02:00
parent 2ffbcc19c6
commit caeec18fcc
2 changed files with 10 additions and 10 deletions

View File

@ -7,8 +7,8 @@ def get_desc():
def create(target): def create(target):
myModule = module.Module(__file__, 'audio-test', 'BINARY') my_module = module.Module(__file__, 'audio-test', 'BINARY')
myModule.add_src_file([ my_module.add_src_file([
'test/debug.cpp', 'test/debug.cpp',
'test/base.cpp', 'test/base.cpp',
'test/main.cpp', 'test/main.cpp',
@ -24,8 +24,8 @@ def create(target):
'test/test_int8_16.cpp', 'test/test_int8_16.cpp',
'test/test_int8_8.cpp' 'test/test_int8_8.cpp'
]) ])
myModule.add_module_depend(['audio', 'gtest']) my_module.add_module_depend(['audio', 'gtest'])
return myModule return my_module

View File

@ -7,8 +7,8 @@ def get_desc():
def create(target): def create(target):
myModule = module.Module(__file__, 'audio', 'LIBRARY') my_module = module.Module(__file__, 'audio', 'LIBRARY')
myModule.add_src_file([ my_module.add_src_file([
'audio/debug.cpp', 'audio/debug.cpp',
'audio/channel.cpp', 'audio/channel.cpp',
'audio/format.cpp', 'audio/format.cpp',
@ -26,7 +26,7 @@ def create(target):
'audio/float_t.cpp', 'audio/float_t.cpp',
'audio/double_t.cpp' 'audio/double_t.cpp'
]) ])
myModule.add_header_file([ my_module.add_header_file([
'audio/types.h', 'audio/types.h',
'audio/debug.h', 'audio/debug.h',
'audio/debugRemove.h', 'audio/debugRemove.h',
@ -46,7 +46,7 @@ def create(target):
'audio/float_t.h', 'audio/float_t.h',
'audio/double_t.h' 'audio/double_t.h'
]) ])
myModule.add_module_depend(['etk']) my_module.add_module_depend(['etk'])
myModule.add_path(tools.get_current_path(__file__)) my_module.add_path(tools.get_current_path(__file__))
return myModule return my_module