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':
|
|
|
|
sources += env.Glob('intern/*.mm')
|
2009-10-27 13:40:41 +00:00
|
|
|
|
2009-10-29 18:06:49 +00:00
|
|
|
#if env['WITH_GHOST_COCOA'] == True:
|
|
|
|
# env.Append(CFLAGS=['-DGHOST_COCOA'])
|
|
|
|
# env.Append(CXXFLAGS=['-DGHOST_COCOA'])
|
|
|
|
# env.Append(CPPFLAGS=['-DGHOST_COCOA'])
|
2009-10-27 13:40:41 +00:00
|
|
|
|
|
|
|
#defs = ''
|
|
|
|
#if env['WITH_GHOST_COCOA']:
|
2009-10-27 14:11:28 +00:00
|
|
|
# defs += 'GHOST_COCOA'
|
2009-10-27 13:40:41 +00:00
|
|
|
# maybe we need it later
|
2006-02-04 14:15:10 +00:00
|
|
|
|
|
|
|
pf = ['GHOST_DisplayManager', 'GHOST_System', 'GHOST_Window']
|
2004-01-04 21:11:59 +00:00
|
|
|
|
2008-10-21 23:07:09 +00:00
|
|
|
if window_system in ('linux2', 'openbsd3', 'sunos5', 'freebsd6', 'irix6'):
|
2009-10-27 14:11:28 +00:00
|
|
|
for f in pf:
|
|
|
|
sources.remove('intern' + os.sep + f + 'Win32.cpp')
|
|
|
|
sources.remove('intern' + os.sep + f + 'Carbon.cpp')
|
2009-02-20 22:08:02 +00:00
|
|
|
elif window_system in ('win32-vc', 'win32-mingw', 'cygwin', 'linuxcross', 'win64-vc'):
|
2009-10-27 14:11:28 +00:00
|
|
|
for f in pf:
|
|
|
|
sources.remove('intern' + os.sep + f + 'X11.cpp')
|
|
|
|
sources.remove('intern' + os.sep + f + 'Carbon.cpp')
|
2006-02-04 14:15:10 +00:00
|
|
|
elif window_system == 'darwin':
|
2009-10-27 14:11:28 +00:00
|
|
|
if env['WITH_GHOST_COCOA']:
|
2009-10-27 14:17:29 +00:00
|
|
|
for f in pf:
|
|
|
|
sources.remove('intern' + os.sep + f + 'Win32.cpp')
|
|
|
|
sources.remove('intern' + os.sep + f + 'X11.cpp')
|
|
|
|
sources.remove('intern' + os.sep + f + 'Carbon.cpp')
|
2009-10-27 14:11:28 +00:00
|
|
|
else:
|
|
|
|
for f in pf:
|
|
|
|
sources.remove('intern' + os.sep + f + 'Win32.cpp')
|
|
|
|
sources.remove('intern' + os.sep + f + 'X11.cpp')
|
|
|
|
sources.remove('intern' + os.sep + f + 'Cocoa.mm')
|
2009-10-27 13:40:41 +00:00
|
|
|
|
2006-02-04 14:15:10 +00:00
|
|
|
else:
|
2009-10-27 14:11:28 +00:00
|
|
|
print "Unknown window system specified."
|
|
|
|
Exit()
|
2004-01-04 21:11:59 +00:00
|
|
|
|
2006-02-04 14:15:10 +00:00
|
|
|
incs = '. ../string ' + env['BF_OPENGL_INC']
|
2009-02-20 22:08:02 +00:00
|
|
|
if window_system in ('win32-vc', 'win32-mingw', 'cygwin', 'linuxcross', 'win64-vc'):
|
2009-10-27 14:11:28 +00:00
|
|
|
incs = env['BF_WINTAB_INC'] + ' ' + incs
|
2009-09-05 01:58:02 +00:00
|
|
|
env.BlenderLib ('bf_ghost', sources, Split(incs), defines=['_USE_MATH_DEFINES'], libtype=['intern','player'], priority = [40,15] )
|
2009-10-27 13:40:41 +00:00
|
|
|
|