forked from bartvdbraak/blender
10 lines
193 B
Python
10 lines
193 B
Python
|
2#!/usr/bin/python
|
||
|
Import ('env')
|
||
|
|
||
|
sources = env.Glob('*.cc')
|
||
|
|
||
|
incs = '.'
|
||
|
defs = ''
|
||
|
|
||
|
env.BlenderLib ('extern_rangetree', sources, Split(incs), Split(defs), libtype=['extern'], priority=[100] )
|