9 lines
182 B
Python
9 lines
182 B
Python
|
#!/usr/bin/python
|
||
|
Import ('env')
|
||
|
|
||
|
sources = env.Glob('intern/*.c')
|
||
|
|
||
|
incs = '.'
|
||
|
|
||
|
env.BlenderLib ( 'bf_opencl', sources, Split(incs), libtype=['core','player'], priority = [192,192] )
|