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/ghost/SConscript')
-rw-r--r--intern/ghost/SConscript6
1 files changed, 3 insertions, 3 deletions
diff --git a/intern/ghost/SConscript b/intern/ghost/SConscript
index 7a2b34dcf21..7dbcb2703c6 100644
--- a/intern/ghost/SConscript
+++ b/intern/ghost/SConscript
@@ -4,12 +4,12 @@ ghost_env = Environment()
Import ('cflags')
Import ('cxxflags')
Import ('defines')
+Import ('user_options_dict')
+Import ('window_system')
ghost_env.Append (CCFLAGS = cflags)
ghost_env.Append (CXXFLAGS = cxxflags)
ghost_env.Append (CPPDEFINES = defines)
-Import ('window_system')
-
source_files = ['intern/GHOST_Buttons.cpp',
'intern/GHOST_C-api.cpp',
'intern/GHOST_CallbackEventConsumer.cpp',
@@ -42,4 +42,4 @@ else:
ghost_env.Append (CPPPATH = ['.',
'../string'])
-ghost_env.Library (target='#/lib/blender_GHOST', source=source_files)
+ghost_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/blender_GHOST', source=source_files)