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
|
|
|
|
2006-02-04 14:15:10 +00:00
|
|
|
sources = env.Glob('intern/*.cpp')
|
|
|
|
|
|
|
|
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'):
|
2006-02-05 17:14:52 +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'):
|
2006-02-05 17:14:52 +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':
|
2006-02-05 17:14:52 +00:00
|
|
|
for f in pf:
|
|
|
|
sources.remove('intern' + os.sep + f + 'Win32.cpp')
|
|
|
|
sources.remove('intern' + os.sep + f + 'X11.cpp')
|
2006-02-04 14:15:10 +00:00
|
|
|
else:
|
2006-02-05 17:14:52 +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'):
|
2006-11-13 06:40:08 +00:00
|
|
|
incs = env['BF_WINTAB_INC'] + ' ' + incs
|
2008-12-23 16:07:24 +00:00
|
|
|
env.BlenderLib ('bf_ghost', sources, Split(incs), defines=['_USE_MATH_DEFINES'], libtype=['intern'], priority = [40] )
|