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: 98d7adb2d1edda341d000e96f97b0c36b0fe8125 (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'], priority=[36], compileflags = cflags)