From d49703b298ebab297fe3c3ecb337cd0a6fa78611 Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Wed, 29 Jul 2015 21:48:24 +0200 Subject: Fix SCons path issue on Windows. --- intern/audaspace/SConscript | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'intern') 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 = [] -- cgit v1.2.3