Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

  1. #######################################################################
  2. # SConscript for xlib state_tracker
  3.  
  4. Import('*')
  5.  
  6. env = env.Clone()
  7.  
  8. env.Append(CPPPATH = [
  9.     '#/src/mapi',
  10.     '#/src/mesa',
  11.     '#/src/mesa/main',
  12. ])
  13.  
  14. sources = [
  15.     'glx_api.c',
  16.     'glx_getproc.c',
  17.     'glx_usefont.c',
  18.     'xm_api.c',
  19.     'xm_st.c',
  20. ]
  21.  
  22. st_xlib = env.ConvenienceLibrary(
  23.     target = 'st_xlib',
  24.     source = sources,
  25. )
  26. Export('st_xlib')
  27.