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:
Diffstat (limited to 'intern/smoke')
-rw-r--r--intern/smoke/SConscript6
1 files changed, 5 insertions, 1 deletions
diff --git a/intern/smoke/SConscript b/intern/smoke/SConscript
index af5bf1aeb20..2fc8798fc78 100644
--- a/intern/smoke/SConscript
+++ b/intern/smoke/SConscript
@@ -3,12 +3,16 @@ Import ('env')
sources = env.Glob('intern/*.cpp')
+incs = ''
defs = ''
if env['WITH_BF_OPENMP']:
+ if env['OURPLATFORM'] == 'linuxcross':
+ incs += ' ' + env['BF_OPENMP_INC']
+
defs += ' PARALLEL=1'
-incs = env['BF_PNG_INC'] + ' ' + env['BF_ZLIB_INC']
+incs += ' ' + env['BF_PNG_INC'] + ' ' + env['BF_ZLIB_INC']
incs += ' intern ../../extern/bullet2/src ../memutil ../guardealloc '
if env['WITH_BF_FFTW3']: