Haiku: Add Gallium winsys and target code

* We generate a static library for Haiku
  Gallium targets as our port system combines
  the compiled rendering code into a modular
  ar for each module (for example, our port
  system combines llvm libsoftpipe.a libllvmpipe.a
  into a single ar for the Haiku build system.
  I'd like the Gallium hgl target scons build
  system to do this some day, however how is
  beyond me at the moment. This is a first step.
This commit is contained in:
Alexander von Gluck IV
2013-05-21 15:55:24 -05:00
parent ff68f61bed
commit 6d20e251f2
9 changed files with 589 additions and 0 deletions
+10
View File
@@ -74,6 +74,11 @@ if not env['msvc']:
'winsys/i915/sw/SConscript',
])
if env['platform'] == 'haiku':
SConscript([
'winsys/sw/hgl/SConscript',
])
if env['dri']:
SConscript([
'winsys/sw/dri/SConscript',
@@ -114,6 +119,11 @@ if not env['embedded']:
'targets/libgl-gdi/SConscript',
])
if env['platform'] == 'haiku':
SConscript([
'targets/haiku-softpipe/SConscript',
])
if env['dri']:
SConscript([
'targets/SConscript.dri',