Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SConscript « glew-es « extern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7552ce840674bd298c9eaeae7bf1559a668574f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/python
import sys
import os

Import('env')

sources = ['src/glew.c']

defs = []
defs += env['BF_GL_DEFINITIONS']

if env['WITH_BF_GLEW_MX']:
    defs += ['GLEW_MX']
incs = ['include']

env.BlenderLib ( 'extern_glew_es', sources, incs, defs, libtype=['extern','player'], priority=[50,230] )