mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-02 04:48:26 +02:00
29 lines
509 B
Python
29 lines
509 B
Python
Import('*')
|
|
|
|
if not 'i915' in env['drivers']:
|
|
print 'warning: i915 pipe driver not built skipping i915_dri.so'
|
|
Return()
|
|
|
|
env = drienv.Clone()
|
|
|
|
env.ParseConfig('pkg-config --cflags --libs libdrm_intel')
|
|
|
|
env.Append(CPPDEFINES = ['GALLIUM_RBUG', 'GALLIUM_TRACE'])
|
|
|
|
env.Prepend(LIBS = [
|
|
st_dri,
|
|
i915drm,
|
|
i915,
|
|
trace,
|
|
rbug,
|
|
mesa,
|
|
glsl,
|
|
gallium,
|
|
COMMON_DRI_DRM_OBJECTS
|
|
])
|
|
|
|
env.LoadableModule(
|
|
target = 'i915_dri.so',
|
|
source = 'target.c',
|
|
SHLIBPREFIX = '',
|
|
)
|