blob: 95ea061c4bba124c855a50b931b8e8974123e93c [file] [log] [blame]
Brian Paulace31242016-06-15 10:42:34 -06001import filecmp
2import os
3import subprocess
Jose Fonsecab99dcbf2017-08-01 14:36:16 +01004from sys import executable as python_cmd
José Fonseca33ceb672008-02-18 10:52:44 +00005
Brian Paulace31242016-06-15 10:42:34 -06006Import('*')
José Fonseca982609f2011-02-11 17:38:54 +00007
José Fonseca601498a2010-11-01 13:30:22 +00008if env['platform'] == 'windows':
José Fonseca6d670f62011-01-12 15:32:17 +00009 SConscript('getopt/SConscript')
Chia-I Wu1e6c10f2010-05-31 11:47:58 +080010
Nicolai Hähnle49bdb732017-07-31 16:51:13 +020011SConscript('util/xmlpool/SConscript')
Kenneth Graunke1e0da622014-02-24 23:39:14 -080012SConscript('util/SConscript')
Emil Velikov1a882fd2016-01-18 10:47:13 +020013SConscript('compiler/SConscript')
José Fonseca982609f2011-02-11 17:38:54 +000014
15if env['hostonly']:
16 # We are just compiling the things necessary on the host for cross
17 # compilation
18 Return()
19
Brian Paulace31242016-06-15 10:42:34 -060020
21def write_git_sha1_h_file(filename):
22 """Mesa looks for a git_sha1.h file at compile time in order to display
23 the current git hash id in the GL_VERSION string. This function tries
24 to retrieve the git hashid and write the header file. An empty file
25 will be created if anything goes wrong."""
26
Eric Engestrom70886222017-10-25 14:04:35 +010027 args = [ python_cmd, Dir('#').abspath + '/bin/git_sha1_gen.py', '--output', filename ]
28 try:
29 subprocess.call(args)
30 except:
31 print("Warning: exception in write_git_sha1_h_file()")
32 return
Brian Paulace31242016-06-15 10:42:34 -060033
34
35# Create the git_sha1.h header file
36write_git_sha1_h_file("git_sha1.h")
37# and update CPPPATH so the git_sha1.h header can be found
38env.Append(CPPPATH = ["#" + env['build_dir']])
39
40
41
Jose Fonseca47870d62015-03-24 20:26:21 +000042if env['platform'] != 'windows':
43 SConscript('loader/SConscript')
José Fonseca982609f2011-02-11 17:38:54 +000044
Chia-I Wubb770af2011-01-14 17:50:29 +080045# When env['gles'] is set, the targets defined in mapi/glapi/SConscript are not
46# used. libgl-xlib and libgl-gdi adapt themselves to use the targets defined
47# in mapi/glapi-shared/SConscript. mesa/SConscript also adapts itself to
48# enable OpenGL ES support.
Brian Pauldff36e92012-05-30 10:08:11 -060049SConscript('mapi/glapi/gen/SConscript')
José Fonseca601498a2010-11-01 13:30:22 +000050SConscript('mapi/glapi/SConscript')
Alexander von Gluck IV61ef6972013-12-31 15:39:49 -060051
52# Haiku C++ libGL dispatch (renderers depend on libgl)
53if env['platform'] in ['haiku']:
54 SConscript('hgl/SConscript')
55
José Fonseca601498a2010-11-01 13:30:22 +000056SConscript('mesa/SConscript')
José Fonseca1ca29452010-08-13 13:53:04 +010057
Brian Paul88625e62011-09-16 10:11:52 -060058if not env['embedded']:
Vinson Lee5cf69322012-05-23 17:26:20 -070059 if env['platform'] not in ('cygwin', 'darwin', 'freebsd', 'haiku', 'windows'):
José Fonsecaf8aeb1c2011-09-20 20:40:05 +010060 SConscript('glx/SConscript')
Alexander von Gluck IV400b8332014-12-22 10:10:13 -050061 if env['platform'] == 'haiku':
Emil Velikove7e29182015-07-14 02:04:30 +010062 SConscript('egl/SConscript')
Keith Whitwelle3c6d412010-06-08 17:38:01 +010063
Chia-I Wubb770af2011-01-14 17:50:29 +080064 if env['gles']:
65 SConscript('mapi/shared-glapi/SConscript')
66
José Fonseca706eda32010-03-09 15:07:57 +000067SConscript('gallium/SConscript')
José Fonseca57d00012009-01-23 12:32:35 +000068