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

SConscript « glew-mx « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5c70958816c45c62027a4a7e25580c61d0dfa612 (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 = ['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])