mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-03-13 19:40:34 +01:00
There was an issue recently caused by the system header being included by mistake, so let's just get rid of this include path and always explicitly #include "drm-uapi/FOO.h" Signed-off-by: Eric Engestrom <eric.engestrom@intel.com> Reviewed-by: Kristian H. Kristensen <hoegsberg@chromium.org>
36 lines
703 B
Python
36 lines
703 B
Python
#######################################################################
|
|
# SConscript for EGL
|
|
|
|
|
|
Import('*')
|
|
|
|
env = env.Clone()
|
|
|
|
env.Append(CPPPATH = [
|
|
'#/include',
|
|
'#/include/HaikuGL',
|
|
'#/src/egl/main',
|
|
'#/src',
|
|
])
|
|
|
|
|
|
# parse Makefile.sources
|
|
egl_sources = env.ParseSourceList('Makefile.sources', 'LIBEGL_C_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')
|
|
|
|
env.Prepend(LIBS = [mesautil])
|
|
|
|
egl = env.SharedLibrary(
|
|
target = 'EGL',
|
|
source = egl_sources,
|
|
)
|
|
|
|
egl = env.InstallSharedLibrary(egl, version=(1, 0, 0))
|
|
|
|
env.Alias('egl', egl)
|