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/moto/SConscript')
-rw-r--r--intern/moto/SConscript3
1 files changed, 2 insertions, 1 deletions
diff --git a/intern/moto/SConscript b/intern/moto/SConscript
index ec4f07e4746..cc74c942716 100644
--- a/intern/moto/SConscript
+++ b/intern/moto/SConscript
@@ -4,6 +4,7 @@ moto_env = Environment()
Import ('cflags')
Import ('cxxflags')
Import ('defines')
+Import ('user_options_dict')
moto_env.Append (CCFLAGS = cflags)
moto_env.Append (CXXFLAGS = cxxflags)
moto_env.Append (CPPDEFINES = defines)
@@ -22,4 +23,4 @@ source_files = ['intern/MT_CmMatrix4x4.cpp',
moto_env.Append (CPPPATH = ['include'])
-moto_env.Library (target='#/lib/blender_MT', source=source_files)
+moto_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/blender_MT', source=source_files)