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

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

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

incs = 'intern ../container ../moto/include ../memutil'

if (env['OURPLATFORM'] == 'win32-mingw'):
    env.BlenderLib ('blender_BSP', sources, Split(incs), [], libtype=['common','intern'], priority=[26,69] )
else:
    env.BlenderLib ('blender_BSP', sources, Split(incs), [], libtype='core', priority=26 )