2005-10-29 13:26:31 +00:00
|
|
|
#!/usr/bin/python
|
2006-02-04 14:15:10 +00:00
|
|
|
Import ('env')
|
2005-10-29 13:26:31 +00:00
|
|
|
|
2006-02-04 14:15:10 +00:00
|
|
|
sources = env.Glob('intern/*.cpp')
|
2005-10-29 13:26:31 +00:00
|
|
|
|
2006-02-04 14:15:10 +00:00
|
|
|
incs = '. intern extern ../moto/include ../container ../memutil'
|
2005-10-29 13:26:31 +00:00
|
|
|
|
2006-02-04 14:15:10 +00:00
|
|
|
env.BlenderLib ('blender_bop', sources, Split(incs) , [], libtype='common', priority = 5 )
|