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: 81a2fc67ccc2612d14a36275193009bc041f2177 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/python
import sys
import os

Import('env')

sources = ['src/glew.c']

defs = ''
incs = 'include'

env.BlenderLib ( 'extern_glew', sources, Split(incs), Split(defs), libtype=['extern','player'], priority=[50,230])