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

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

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

incs = '. intern extern ../moto/include ../container ../memutil'
incs += ' ../../source/blender/makesdna ../../intern/guardedalloc'
incs += ' ../../source/blender/blenlib'

if (env['OURPLATFORM'] == 'win32-mingw'):
    env.BlenderLib ('blender_bop', sources, Split(incs) , [], libtype=['common','intern'], priority = [5,50] )
else:
    env.BlenderLib ('blender_bop', sources, Split(incs) , [], libtype='common', priority = 5 )