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 192B

1234567891011121314
  1. Import('*')
  2. env = env.Clone()
  3. identity = env.ConvenienceLibrary(
  4. target = 'identity',
  5. source = [
  6. 'id_context.c',
  7. 'id_drm.c',
  8. 'id_objects.c',
  9. 'id_screen.c',
  10. ])
  11. Export('identity')