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: f68810d2f1665f78b5d391516e07b267c13eba3b (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=[55] )