~ubuntu-branches/ubuntu/raring/mesa/raring-proposed

« back to all changes in this revision

Viewing changes to src/SConscript

  • Committer: Bazaar Package Importer
  • Author(s): Cyril Brulebois
  • Date: 2011-06-19 21:26:00 UTC
  • mfrom: (1.6.1 upstream) (3.3.18 sid)
  • mto: (3.3.20 sid)
  • mto: This revision was merged to the branch mainline in revision 145.
  • Revision ID: james.westby@ubuntu.com-20110619212600-rleaapdmnbtstekb
Tags: 7.11~0-2
Thank you sbuild for giving a green light when that's not actually the
case. Fix missing Pre-Depends for the libegl1-mesa-drivers package
(multiarch-support).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Import('*')
 
2
 
 
3
 
 
4
if env['platform'] == 'windows':
 
5
    SConscript('getopt/SConscript')
 
6
 
 
7
SConscript('glsl/SConscript')
 
8
 
 
9
if env['hostonly']:
 
10
    # We are just compiling the things necessary on the host for cross
 
11
    # compilation
 
12
    Return()
 
13
 
 
14
 
 
15
# When env['gles'] is set, the targets defined in mapi/glapi/SConscript are not
 
16
# used.  libgl-xlib and libgl-gdi adapt themselves to use the targets defined
 
17
# in mapi/glapi-shared/SConscript.  mesa/SConscript also adapts itself to
 
18
# enable OpenGL ES support.
 
19
SConscript('mapi/glapi/SConscript')
 
20
SConscript('mesa/SConscript')
 
21
 
 
22
SConscript('mapi/vgapi/SConscript')
 
23
 
 
24
if env['platform'] != 'embedded':
 
25
    SConscript('egl/main/SConscript')
 
26
    SConscript('glu/sgi/SConscript')
 
27
    SConscript('glut/glx/SConscript')
 
28
 
 
29
    if env['gles']:
 
30
        SConscript('mapi/shared-glapi/SConscript')
 
31
 
 
32
SConscript('gallium/SConscript')
 
33