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: 2747702985d044d87f8ab1376b77cff60bd7f5c4 (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, 226], compileflags = cflags)