Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SConscript « gpu « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8ccd4b7b24c281878a21a681683fb54b0169b141 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/python
Import ('env')

sources = env.Glob('intern/*.c')

incs = '../blenlib ../blenkernel ../makesdna ../include'
incs += ' #/extern/glew/include #intern/guardedalloc ../imbuf .'

incs += ' ' + env['BF_OPENGL_INC']

env.BlenderLib ( 'bf_gpu', sources, Split(incs), [], libtype=['core', 'player'], priority=[65, 20] )