2006-02-04 14:15:10 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
Import ('env')
|
2004-07-13 11:42:13 +00:00
|
|
|
|
2006-02-04 14:15:10 +00:00
|
|
|
sources = env.Glob('intern/*.c') + env.Glob('superlu/*.c')
|
2004-07-13 11:42:13 +00:00
|
|
|
|
2006-02-04 14:15:10 +00:00
|
|
|
incs = 'extern superlu'
|
2004-07-13 11:42:13 +00:00
|
|
|
|
2006-02-04 14:15:10 +00:00
|
|
|
env.BlenderLib ('blender_ONL', sources, Split(incs), [], libtype='core', priority=55 )
|
2004-07-13 11:42:13 +00:00
|
|
|
|