From b9a09585c1f0775d40e0e0da9f7dcb276acebb10 Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Fri, 8 May 2015 22:34:39 +0200 Subject: [PATCH] [BUILD] update new lutin 0.5.3 --- lutin_audio_ess.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lutin_audio_ess.py b/lutin_audio_ess.py index c0b9b8e..264660f 100644 --- a/lutin_audio_ess.py +++ b/lutin_audio_ess.py @@ -1,7 +1,7 @@ #!/usr/bin/python -import lutinModule as module -import lutinTools as tools -import lutinDebug as debug +import lutin.module as module +import lutin.tools as tools +import lutin.debug as debug def get_desc(): return "audio_ess : ewol sound set interface for 'small game' audio effects" @@ -24,7 +24,7 @@ def create(target): myModule.add_module_depend(['etk', 'audio_river', 'ogg']) if target.name=="Android": # TODO : Change this ... - myModule.add_export_flag_CC("-pthread -frtti -fexceptions") + myModule.add_export_flag('c++', ["-pthread", "-frtti", "-fexceptions"]) myModule.add_export_path(tools.get_current_path(__file__))