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: 1f050f0af8ba954b1a48ea54a77d1c8da5af1b54 (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 ( 'extern_glew_mx', sources, incs, defs, libtype=['intern','player'], priority=[10, 185] )