diff options
author | Emil Velikov <[email protected]> | 2015-07-14 02:04:30 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2015-07-22 16:35:27 +0100 |
commit | e7e29189e27bb404bf84d757a8f1dd617126808a (patch) | |
tree | f710649b614a409f4d628ddfd27c9b0b832c9085 /src/egl/drivers/haiku/SConscript | |
parent | e3420396124c75ec9679c4d1cf3a42c185207e5a (diff) |
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 <[email protected]>
Signed-off-by: Emil Velikov <[email protected]>
Acked-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/egl/drivers/haiku/SConscript')
-rw-r--r-- | src/egl/drivers/haiku/SConscript | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/src/egl/drivers/haiku/SConscript b/src/egl/drivers/haiku/SConscript deleted file mode 100644 index 9db7ecfdd07..00000000000 --- a/src/egl/drivers/haiku/SConscript +++ /dev/null @@ -1,25 +0,0 @@ -Import('*') - -env = env.Clone() - -env.Append(CPPPATH = [ - '#/include', - '#/src/egl/main', -]) - -sources = [ - 'egl_haiku.cpp' -] - -if env['platform'] == 'haiku': - env.Append(CPPDEFINES = [ - 'HAVE_HAIKU_PLATFORM', - '_EGL_NATIVE_PLATFORM=haiku', - ]) - -egl_haiku = env.ConvenienceLibrary( - target = 'egl_haiku', - source = sources, -) - -Export('egl_haiku') |