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: 546470d020cc8da542fea685cf9f1ce4e0f954fc (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 = ['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])