forked from bartvdbraak/blender
8b5d86dfba
Ghost depends on glew-mx, so glew-mx should be passed to linker after the ghost. We're also using spaces for indentation in python, including scons rules.
17 lines
272 B
Python
17 lines
272 B
Python
#!/usr/bin/python
|
|
import sys
|
|
import os
|
|
|
|
Import('env')
|
|
|
|
sources = ['intern/glew-mx.c']
|
|
|
|
defs = env['BF_GL_DEFINITIONS']
|
|
|
|
incs = [
|
|
'.',
|
|
env['BF_GLEW_INC'],
|
|
]
|
|
|
|
env.BlenderLib('intern_glew_mx', sources, incs, defs, libtype=['intern','player'], priority=[50, 185])
|