forked from bartvdbraak/blender
a8811094ea
RangeTree is a simple C++ tree set for storing non-overlapping scalar ranges. Original source from: https://github.com/nicholasbishop/RangeTree Also update the build systems to include RangeTree.
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] )
|