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:
authorDamien Plisson <damien.plisson@yahoo.fr>2009-10-30 23:20:48 +0300
committerDamien Plisson <damien.plisson@yahoo.fr>2009-10-30 23:20:48 +0300
commit93173a6dd4eaf1955516e35335009494a92f300b (patch)
tree8179f8ad07c6bcf1dc276d3e89058f829dd7c742 /source/blender/windowmanager/SConscript
parentf03257cc1f68e6448b8c45e9053d894d275f44cb (diff)
Mac / COCOA :
- fix 10.4 compile issues - fix some scons issues & add WITH_BF_COLLADA = False in scons darwin_config.py to allow build waiting for complete Collada Mac implementation
Diffstat (limited to 'source/blender/windowmanager/SConscript')
-rw-r--r--source/blender/windowmanager/SConscript3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/windowmanager/SConscript b/source/blender/windowmanager/SConscript
index c01649485a5..2a86d42f590 100644
--- a/source/blender/windowmanager/SConscript
+++ b/source/blender/windowmanager/SConscript
@@ -29,4 +29,7 @@ if env['OURPLATFORM'] == 'linux2':
if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'linuxcross', 'win64-vc'):
incs += ' ' + env['BF_PTHREADS_INC']
+if env['WITH_GHOST_COCOA']:
+ sources.remove('intern/wm_apple.c')
+
env.BlenderLib ( 'bf_windowmanager', sources, Split(incs), defs, libtype=['core'], priority=[5] )