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

SConscript « glew « extern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a9687383a0c24da8bdc13cfc7b0914c0dd53aead (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/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', sources, incs, defs, libtype=['extern','player'], priority=[50,230] )