forked from bartvdbraak/blender
13 lines
224 B
Python
13 lines
224 B
Python
#!/usr/bin/python
|
|
import sys
|
|
import os
|
|
|
|
Import('env')
|
|
|
|
sources = ['src/glew.c']
|
|
|
|
defs = ''
|
|
incs = 'include'
|
|
|
|
env.BlenderLib ( 'extern_glew', sources, Split(incs), Split(defs), libtype=['extern','player'], priority=[50,230])
|