~diresu/blender/blender-command-port

« back to all changes in this revision

Viewing changes to source/blender/gpu/SConscript

  • Committer: theeth
  • Date: 2008-10-14 16:52:04 UTC
  • Revision ID: vcs-imports@canonical.com-20081014165204-r32w2gm6s0osvdhn
copy back trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python
 
2
Import ('env')
 
3
 
 
4
sources = env.Glob('intern/*.c')
 
5
 
 
6
incs = '../blenlib ../blenkernel ../makesdna ../include'
 
7
incs += ' #/extern/glew/include #intern/guardedalloc ../imbuf .'
 
8
 
 
9
incs += ' ' + env['BF_OPENGL_INC']
 
10
 
 
11
env.BlenderLib ( 'bf_gpu', sources, Split(incs), [], libtype=['core', 'player'], priority=[65, 20] )