Subversion Repositories Kolibri OS

Rev

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

  1. Import('*')
  2.  
  3. if True:
  4.     env.Append(CPPDEFINES = [
  5.         'GALLIUM_SOFTPIPE',
  6.         'GALLIUM_RBUG',
  7.         'GALLIUM_TRACE',
  8.     ])
  9.  
  10. if env['llvm']:
  11.     env.Append(CPPDEFINES = 'HAVE_LLVMPIPE')
  12.  
  13. softpipe_sources = [
  14.     'haiku-softpipe.c'
  15. ]
  16.  
  17. module = env.StaticLibrary(
  18.     target ='swpipe_haiku.a',
  19.     source = softpipe_sources,
  20.     SHLIBPREFIX = '',
  21. )
  22.