[DEV] update Build interface

This commit is contained in:
Edouard DUPIN 2015-09-14 21:11:04 +02:00
parent cd9f9e76e3
commit 4cdb9c6e71

View File

@ -19,6 +19,12 @@ def create(target):
'audio/ess/music.cpp',
'audio/ess/LoadedFile.cpp'
])
myModule.add_header_file([
'audio/ess/effects.h',
'audio/ess/ess.h',
'audio/ess/music.h',
'audio/ess/LoadedFile.h'
])
# name of the dependency
myModule.add_module_depend(['etk', 'audio-river', 'ogg', 'ejson'])
@ -26,7 +32,7 @@ def create(target):
# TODO : Change this ...
myModule.add_export_flag('c++', ["-pthread", "-frtti", "-fexceptions"])
myModule.add_export_path(tools.get_current_path(__file__))
myModule.add_path(tools.get_current_path(__file__))
# add the currrent module at the
return myModule