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: ff66b4ad6e15eda4a399f4c6376d99c236a0143a (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 ('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] )