forked from bartvdbraak/blender
8d084e8c8f
https://developer.blender.org/D643 Separates graphics context creation from window code in Ghost so that they can vary separately.
16 lines
287 B
Python
16 lines
287 B
Python
#!/usr/bin/python
|
|
import sys
|
|
import os
|
|
|
|
Import('env')
|
|
|
|
sources = ['src/glew.c']
|
|
|
|
defs = env['BF_GL_DEFINITIONS']
|
|
if env['WITH_BF_GLEW_MX']:
|
|
defs += ['GLEW_MX']
|
|
|
|
incs = ['include']
|
|
|
|
env.BlenderLib ( 'extern_glew', sources, incs, defs, libtype=['extern','player'], priority=[50,230] )
|