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

SConscript « binreloc « extern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a39dff7f399b6743c820a21d42841de60d1d3a8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/python
import sys
import os

Import('env')
defs = 'ENABLE_BINRELOC'
cflags = []

sources = ['binreloc.c']
incs = 'include'

env.BlenderLib ( 'extern_binreloc', sources, Split(incs), Split(defs), libtype=['intern','player'], priority=[36, 114], compileflags = cflags)