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:
authorThomas Dinges <blender@dingto.org>2015-07-29 22:48:24 +0300
committerThomas Dinges <blender@dingto.org>2015-07-29 22:48:24 +0300
commitd49703b298ebab297fe3c3ecb337cd0a6fa78611 (patch)
tree05bf70b024288a061953daa47ebf3ffb194ee81a /intern/audaspace
parent7380166db2ca0a21511822c33b7751766a5165b1 (diff)
Fix SCons path issue on Windows.
Diffstat (limited to 'intern/audaspace')
-rw-r--r--intern/audaspace/SConscript4
1 files changed, 3 insertions, 1 deletions
diff --git a/intern/audaspace/SConscript b/intern/audaspace/SConscript
index 2975545f2b6..8dfaa861ce2 100644
--- a/intern/audaspace/SConscript
+++ b/intern/audaspace/SConscript
@@ -21,12 +21,14 @@
#
# ***** END LGPL LICENSE BLOCK *****
+from os import path
Import ('env')
sources = env.Glob('intern/*.cpp') + env.Glob('FX/*.cpp')
# AUD_PyInit is for external audaspace only
-sources.remove('intern/AUD_PyInit.cpp')
+sources.remove(path.join('intern', 'AUD_PyInit.cpp'))
+
incs = '. intern FX ' + env['BF_PTHREADS_INC'] + ' ' + env['BF_BOOST_INC']
defs = []