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: 711955cbfeb020498969bc0d1fa9bd9af1621cef (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 ../../extern/colamd/Include'

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