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

SConscript « Expressions « gameengine « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2fd3bf6fe75d684649295db74601a9b1a0cc7413 (plain)
1
2
3
4
5
6
7
8
9
#!/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 ( 'blender_expressions', sources, Split(incs), [], libtype='game', priority = 45 )