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:
authorJens Verwiebe <info@jensverwiebe.de>2013-11-05 17:34:05 +0400
committerJens Verwiebe <info@jensverwiebe.de>2013-11-05 17:34:05 +0400
commit7f5cb54b568cbdef6c96bb552a8dfc44f650e598 (patch)
tree2bb692da2476bdef5f078c23bba09e17abe83ad2 /intern/ghost/SConscript
parent52588bf014352d808ec139ab121b63f3a671fd33 (diff)
OSX: remove Ghost carbon files and adapt scons
Diffstat (limited to 'intern/ghost/SConscript')
-rw-r--r--intern/ghost/SConscript4
1 files changed, 0 insertions, 4 deletions
diff --git a/intern/ghost/SConscript b/intern/ghost/SConscript
index fed8cd7aa3c..7d1f3efbe31 100644
--- a/intern/ghost/SConscript
+++ b/intern/ghost/SConscript
@@ -55,7 +55,6 @@ incs += ' ' + env['BF_OPENGL_INC']
if env['WITH_GHOST_SDL']:
for f in pf:
try:
- sources.remove('intern' + os.sep + f + 'Carbon.cpp')
sources.remove('intern' + os.sep + f + 'Win32.cpp')
sources.remove('intern' + os.sep + f + 'X11.cpp')
except ValueError:
@@ -66,7 +65,6 @@ elif window_system in ('linux', 'openbsd3', 'sunos5', 'freebsd7', 'freebsd8', 'f
for f in pf:
try:
sources.remove('intern' + os.sep + f + 'Win32.cpp')
- sources.remove('intern' + os.sep + f + 'Carbon.cpp')
sources.remove('intern' + os.sep + f + 'SDL.cpp')
except ValueError:
pass
@@ -94,7 +92,6 @@ elif window_system in ('win32-vc', 'win32-mingw', 'cygwin', 'linuxcross', 'win64
for f in pf:
try:
sources.remove('intern' + os.sep + f + 'X11.cpp')
- sources.remove('intern' + os.sep + f + 'Carbon.cpp')
sources.remove('intern' + os.sep + f + 'SDL.cpp')
except ValueError:
pass
@@ -108,7 +105,6 @@ elif window_system == 'darwin':
try:
sources.remove('intern' + os.sep + f + 'Win32.cpp')
sources.remove('intern' + os.sep + f + 'X11.cpp')
- sources.remove('intern' + os.sep + f + 'Carbon.cpp')
sources.remove('intern' + os.sep + f + 'SDL.cpp')
except ValueError:
pass