forked from bartvdbraak/blender
4e2143f639
Patch provied by gsrb3d bug tracker #7061 Kent
10 lines
281 B
Python
10 lines
281 B
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
|
|
sources = env.Glob('*.cpp')
|
|
|
|
incs ='. #source/kernel/gen_system #intern/string #intern/moto/include'
|
|
incs += ' ' + env['BF_PYTHON_INC']
|
|
|
|
env.BlenderLib ( 'bf_expressions', sources, Split(incs), [], libtype=['game','player'], priority = [45,125] )
|