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: 331b70a4ebccafbfb0b70f8a09cf147e702403f3 (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=['extern','player'], priority=[36,225], compileflags = cflags)