2004-05-16 13:07:20 +00:00
|
|
|
#!/usr/bin/python
|
2006-02-04 14:15:10 +00:00
|
|
|
import sys
|
|
|
|
import os
|
2004-02-29 21:40:48 +00:00
|
|
|
|
2006-02-04 14:15:10 +00:00
|
|
|
Import ('env')
|
2004-01-04 21:11:59 +00:00
|
|
|
|
2006-02-05 17:14:52 +00:00
|
|
|
window_system = env['OURPLATFORM']
|
2004-01-04 21:11:59 +00:00
|
|
|
|
2009-10-27 14:11:28 +00:00
|
|
|
sources = env.Glob('intern/*.cpp')
|
|
|
|
if window_system == 'darwin':
|
2010-08-29 20:52:05 +00:00
|
|
|
sources += env.Glob('intern/*.mm')
|
2009-10-27 13:40:41 +00:00
|
|
|
|
2006-02-04 14:15:10 +00:00
|
|
|
|
2011-01-05 14:00:14 +00:00
|
|
|
pf = ['GHOST_DisplayManager', 'GHOST_System', 'GHOST_SystemPaths', 'GHOST_Window', 'GHOST_DropTarget']
|
2009-12-03 12:16:00 +00:00
|
|
|
defs=['_USE_MATH_DEFINES']
|
2004-01-04 21:11:59 +00:00
|
|
|
|
2010-08-13 20:54:34 +00:00
|
|
|
if window_system in ('linux2', 'openbsd3', 'sunos5', 'freebsd7', 'freebsd8', 'freebsd9', 'irix6', 'aix4', 'aix5'):
|
2010-08-29 20:52:05 +00:00
|
|
|
for f in pf:
|
|
|
|
try:
|
|
|
|
sources.remove('intern' + os.sep + f + 'Win32.cpp')
|
|
|
|
sources.remove('intern' + os.sep + f + 'Carbon.cpp')
|
|
|
|
except ValueError:
|
|
|
|
pass
|
2011-03-25 04:56:48 +00:00
|
|
|
defs += ['PREFIX=\\"/usr/local/\\"'] # XXX, make an option
|
|
|
|
defs += ['WITH_X11_XINPUT'] # XXX, make an option
|
2010-11-01 22:26:56 +00:00
|
|
|
|
2009-02-20 22:08:02 +00:00
|
|
|
elif window_system in ('win32-vc', 'win32-mingw', 'cygwin', 'linuxcross', 'win64-vc'):
|
2010-08-29 20:52:05 +00:00
|
|
|
for f in pf:
|
|
|
|
try:
|
|
|
|
sources.remove('intern' + os.sep + f + 'X11.cpp')
|
|
|
|
sources.remove('intern' + os.sep + f + 'Carbon.cpp')
|
|
|
|
except ValueError:
|
|
|
|
pass
|
2006-02-04 14:15:10 +00:00
|
|
|
elif window_system == 'darwin':
|
2010-08-29 20:52:05 +00:00
|
|
|
if env['WITH_GHOST_COCOA']:
|
|
|
|
if env['WITH_BF_QUICKTIME']:
|
|
|
|
defs.append('WITH_QUICKTIME')
|
|
|
|
if env['USE_QTKIT']:
|
|
|
|
defs.append('USE_QTKIT')
|
|
|
|
for f in pf:
|
|
|
|
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')
|
|
|
|
except ValueError:
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
for f in pf:
|
|
|
|
try:
|
|
|
|
sources.remove('intern' + os.sep + f + 'Win32.cpp')
|
|
|
|
sources.remove('intern' + os.sep + f + 'X11.cpp')
|
|
|
|
sources.remove('intern' + os.sep + f + 'Cocoa.mm')
|
|
|
|
except ValueError:
|
|
|
|
pass
|
2009-10-27 13:40:41 +00:00
|
|
|
|
2006-02-04 14:15:10 +00:00
|
|
|
else:
|
2010-08-29 20:52:05 +00:00
|
|
|
print "Unknown window system specified."
|
|
|
|
Exit()
|
2004-01-04 21:11:59 +00:00
|
|
|
|
2009-12-02 00:57:12 +00:00
|
|
|
if env['BF_GHOST_DEBUG']:
|
2010-08-29 20:52:05 +00:00
|
|
|
defs.append('BF_GHOST_DEBUG')
|
2010-07-14 14:11:03 +00:00
|
|
|
|
2010-02-01 18:23:24 +00:00
|
|
|
incs = '. ../string #extern/glew/include #source/blender/imbuf #source/blender/makesdna ' + env['BF_OPENGL_INC']
|
2009-02-20 22:08:02 +00:00
|
|
|
if window_system in ('win32-vc', 'win32-mingw', 'cygwin', 'linuxcross', 'win64-vc'):
|
2010-08-29 20:52:05 +00:00
|
|
|
incs = env['BF_WINTAB_INC'] + ' ' + incs
|
2010-10-21 18:13:43 +00:00
|
|
|
|
|
|
|
if window_system in ('win32-vc', 'win64-vc'):
|
2010-10-26 23:32:59 +00:00
|
|
|
env.BlenderLib ('bf_intern_ghost', sources, Split(incs), defines=defs, libtype=['intern','player'], priority = [40,15]) #, cc_compileflags=env['CCFLAGS'].append('/WX') )
|
2010-10-21 07:14:31 +00:00
|
|
|
else:
|
|
|
|
env.BlenderLib ('bf_intern_ghost', sources, Split(incs), defines=defs, libtype=['intern','player'], priority = [40,15] )
|