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

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

sources = env.Glob('intern/*.cpp')

incs = ' . extern intern' 
defs = ''

env.BlenderLib ('bf_sph', sources, Split(incs), Split(defs), libtype='blender', priority=0 )