Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJörg Müller <nexyon@gmail.com>2015-06-16 11:03:35 +0300
committerJörg Müller <nexyon@gmail.com>2015-07-28 15:01:53 +0300
commita0cbebf404d6c46e59b090e7217ce39d7e760809 (patch)
treefad66bb8f714c160c3a3f016e1fba1711824e34d /source/gameengine/Ketsji
parent58956f3b91e581ef7040371dda3e3595902c18d9 (diff)
Audaspace: fixing problems for the merge to master suggested by Campbell and Sergey.
- rename WITH_EXTERNAL_AUDASPACE to WITH_SYSTEM_AUDASPACE. - rename C/PYAUDASPACE to AUDASPACE_C/PY - simplifying cmake defines and includes. - fixing include paths and enabling WITH_SYSTEM_AUDASPACE for windows. - fixing scons building. - other minor build system fixes.
Diffstat (limited to 'source/gameengine/Ketsji')
-rw-r--r--source/gameengine/Ketsji/CMakeLists.txt15
-rw-r--r--source/gameengine/Ketsji/KX_PythonInit.cpp2
-rw-r--r--source/gameengine/Ketsji/KX_SoundActuator.cpp12
-rw-r--r--source/gameengine/Ketsji/KX_SoundActuator.h8
-rw-r--r--source/gameengine/Ketsji/SConscript7
5 files changed, 19 insertions, 25 deletions
diff --git a/source/gameengine/Ketsji/CMakeLists.txt b/source/gameengine/Ketsji/CMakeLists.txt
index f938994f86a..2607e2bb4b7 100644
--- a/source/gameengine/Ketsji/CMakeLists.txt
+++ b/source/gameengine/Ketsji/CMakeLists.txt
@@ -248,17 +248,12 @@ if(WITH_CODEC_FFMPEG)
endif()
if(WITH_AUDASPACE)
- list(APPEND INC ../../../intern/audaspace/intern)
+ add_definitions(${AUDASPACE_DEFINITIONS})
- add_definitions(-DWITH_AUDASPACE)
-
- if(WITH_EXTERNAL_AUDASPACE)
- add_definitions(-DWITH_EXTERNAL_AUDASPACE)
- list(APPEND INC_SYS
- ${CAUDASPACE_INCLUDE_DIRS}
- ${PYAUDASPACE_INCLUDE_DIRS}
- )
- endif()
+ list(APPEND INC_SYS
+ ${AUDASPACE_C_INCLUDE_DIRS}
+ ${AUDASPACE_PY_INCLUDE_DIRS}
+ )
endif()
if(WITH_BULLET)
diff --git a/source/gameengine/Ketsji/KX_PythonInit.cpp b/source/gameengine/Ketsji/KX_PythonInit.cpp
index 2eaacf43041..4cb632ed739 100644
--- a/source/gameengine/Ketsji/KX_PythonInit.cpp
+++ b/source/gameengine/Ketsji/KX_PythonInit.cpp
@@ -61,7 +61,7 @@ extern "C" {
# include "marshal.h" /* python header for loading/saving dicts */
}
-#include "AUD_PyInit.h"
+#include "../../../../intern/audaspace/intern/AUD_PyInit.h"
#endif /* WITH_PYTHON */
diff --git a/source/gameengine/Ketsji/KX_SoundActuator.cpp b/source/gameengine/Ketsji/KX_SoundActuator.cpp
index 8f225e4d93b..14f0598d088 100644
--- a/source/gameengine/Ketsji/KX_SoundActuator.cpp
+++ b/source/gameengine/Ketsji/KX_SoundActuator.cpp
@@ -37,14 +37,14 @@
#include "KX_SoundActuator.h"
#ifdef WITH_AUDASPACE
-# ifdef WITH_EXTERNAL_AUDASPACE
+# ifdef WITH_SYSTEM_AUDASPACE
typedef float sample_t;
-# include <audaspace/AUD_Sound.h>
-# include <audaspace/AUD_Special.h>
-# include <audaspace/AUD_Device.h>
-# include <audaspace/AUD_Handle.h>
-# include <audaspace/python/PyAPI.h>
+# include AUD_PYTHON_H
# endif
+# include AUD_SOUND_H
+# include AUD_SPECIAL_H
+# include AUD_DEVICE_H
+# include AUD_HANDLE_H
#endif
#include "KX_GameObject.h"
diff --git a/source/gameengine/Ketsji/KX_SoundActuator.h b/source/gameengine/Ketsji/KX_SoundActuator.h
index 83d22142bda..5ec2fda722f 100644
--- a/source/gameengine/Ketsji/KX_SoundActuator.h
+++ b/source/gameengine/Ketsji/KX_SoundActuator.h
@@ -35,12 +35,8 @@
#include "SCA_IActuator.h"
#ifdef WITH_AUDASPACE
-# ifdef WITH_EXTERNAL_AUDASPACE
-# include <audaspace/AUD_Sound.h>
-# include <audaspace/AUD_Handle.h>
-# else
-# include "AUD_C-API.h"
-# endif
+# include AUD_SOUND_H
+# include AUD_HANDLE_H
#endif
#include "BKE_sound.h"
diff --git a/source/gameengine/Ketsji/SConscript b/source/gameengine/Ketsji/SConscript
index 8074a4064ff..5b2807d8172 100644
--- a/source/gameengine/Ketsji/SConscript
+++ b/source/gameengine/Ketsji/SConscript
@@ -40,8 +40,6 @@ incs = [
'#source/blender',
env['BF_GLEW_INC'],
'#/intern/glew-mx',
- '#intern/audaspace/FX',
- '#intern/audaspace/intern',
'#intern/moto/include',
'#source/blender/blenfont',
'#source/blender/blenkernel',
@@ -86,6 +84,11 @@ if env['WITH_BF_PYTHON']:
incs += ' ' + env['BF_PYTHON_INC']
defs.append('WITH_PYTHON')
+if env['WITH_BF_AUDASPACE']:
+ defs += env['BF_AUDASPACE_DEF']
+ incs += ' ' + env['BF_AUDASPACE_C_INC']
+ incs += ' ' + env['BF_AUDASPACE_PY_INC']
+
if env['WITH_BF_FFMPEG']:
defs.append('WITH_FFMPEG')