dfc672f8bb
The issue was caused by the following construction: def = env['SOMETHING'] defs.append('SOMETHING_MORE') Since first assignment was actually referencing environment option it was totally polluted hawing weird and wonderful side effects on all other areas of Blender.
16 lines
281 B
Python
16 lines
281 B
Python
#!/usr/bin/python
|
|
import sys
|
|
import os
|
|
|
|
Import('env')
|
|
|
|
sources = ['intern/glew-mx.c']
|
|
defs = []
|
|
defs += env['BF_GL_DEFINITIONS']
|
|
incs = [
|
|
'.',
|
|
env['BF_GLEW_INC'],
|
|
]
|
|
|
|
env.BlenderLib('intern_glew_mx', sources, incs, defs, libtype=['intern','player'], priority=[50, 185])
|