summaryrefslogtreecommitdiffstats
path: root/src/egl/SConscript
diff options
context:
space:
mode:
authorEmil Velikov <emil.l.velikov@gmail.com>2015-07-14 02:04:30 +0100
committerEmil Velikov <emil.l.velikov@gmail.com>2015-07-22 16:35:27 +0100
commite7e29189e27bb404bf84d757a8f1dd617126808a (patch)
treef710649b614a409f4d628ddfd27c9b0b832c9085 /src/egl/SConscript
parente3420396124c75ec9679c4d1cf3a42c185207e5a (diff)
downloadexternal_mesa3d-e7e29189e27bb404bf84d757a8f1dd617126808a.zip
external_mesa3d-e7e29189e27bb404bf84d757a8f1dd617126808a.tar.gz
external_mesa3d-e7e29189e27bb404bf84d757a8f1dd617126808a.tar.bz2
scons: rework the EGL build
The scons equivalent of the previous commit - just fold the almost identical driver + main Sconscripts. Cc: Alexander von Gluck IV <kallisti5@unixzen.com> Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> Acked-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'src/egl/SConscript')
-rw-r--r--src/egl/SConscript33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/egl/SConscript b/src/egl/SConscript
new file mode 100644
index 0000000..a7f6282
--- /dev/null
+++ b/src/egl/SConscript
@@ -0,0 +1,33 @@
+#######################################################################
+# SConscript for EGL
+
+
+Import('*')
+
+env = env.Clone()
+
+env.Append(CPPPATH = [
+ '#/include',
+ '#/src/egl/main',
+])
+
+
+# parse Makefile.sources
+egl_sources = env.ParseSourceList('Makefile.sources', 'LIBEGL_C_FILES')
+egl_sources.append(env.ParseSourceList('Makefile.sources', 'dri2_backend_core_FILES'))
+
+env.Append(CPPDEFINES = [
+ '_EGL_NATIVE_PLATFORM=_EGL_PLATFORM_HAIKU',
+ '_EGL_BUILT_IN_DRIVER_HAIKU',
+ 'HAVE_HAIKU_PLATFORM',
+])
+egl_sources.append('drivers/haiku/egl_haiku.cpp')
+
+egl = env.SharedLibrary(
+ target = 'EGL',
+ source = egl_sources,
+)
+
+egl = env.InstallSharedLibrary(egl, version=(1, 0, 0))
+
+env.Alias('egl', egl)