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

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

sources = env.Glob('intern/*.c') + env.Glob('superlu/*.c')

incs = 'extern superlu'

if (env['OURPLATFORM'] == 'win32-mingw'):
	env.BlenderLib ('blender_ONL', sources, Split(incs), [], libtype=['core','intern'], priority=[1,80] )
else:
	env.BlenderLib ('blender_ONL', sources, Split(incs), [], libtype='core', priority=65 )