Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SConscript 233B

123456789101112131415
  1. Import('*')
  2. env = drienv.Clone()
  3. drivers = [
  4. softpipe,
  5. i915simple,
  6. inteldrm
  7. ]
  8. env.SharedLibrary(
  9. target ='i915_dri.so',
  10. source = COMMON_GALLIUM_SOURCES,
  11. LIBS = drivers + mesa + auxiliaries + env['LIBS'],
  12. )