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: d825968806e0fc5fc42aa9add2cf1c889df62451 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/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] )