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

123456789101112131415161718192021222324252627
  1. #######################################################################
  2. # SConscript for xorg state_tracker
  3. Import('*')
  4. if 'xorg' in env['statetrackers']:
  5. env = env.Clone()
  6. env.Append(CPPPATH = [
  7. '#/src/mesa',
  8. ])
  9. env.ParseConfig('pkg-config --cflags --libs xorg-server')
  10. st_xorg = env.ConvenienceLibrary(
  11. target = 'st_xorg',
  12. source = [ 'xorg_composite.c',
  13. 'xorg_crtc.c',
  14. 'xorg_dri2.c',
  15. 'xorg_driver.c',
  16. 'xorg_exa.c',
  17. 'xorg_exa_tgsi.c',
  18. 'xorg_output.c',
  19. ]
  20. )
  21. Export('st_xorg')