2004-05-16 13:07:20 +00:00
|
|
|
#!/usr/bin/python
|
2004-02-15 19:25:32 +00:00
|
|
|
Import ('user_options_dict')
|
2004-02-29 21:40:48 +00:00
|
|
|
Import ('library_env')
|
|
|
|
|
|
|
|
bsp_env = library_env.Copy ()
|
2004-01-04 21:11:59 +00:00
|
|
|
|
|
|
|
source_files = ['intern/BSP_CSGHelper.cpp',
|
|
|
|
'intern/BSP_CSGMesh.cpp',
|
|
|
|
'intern/BSP_CSGMeshBuilder.cpp',
|
|
|
|
'intern/BSP_CSGMeshSplitter.cpp',
|
|
|
|
'intern/BSP_CSGNCMeshSplitter.cpp',
|
|
|
|
'intern/BSP_CSGUserData.cpp',
|
|
|
|
'intern/BSP_FragNode.cpp',
|
|
|
|
'intern/BSP_FragTree.cpp',
|
|
|
|
'intern/BSP_MeshFragment.cpp',
|
|
|
|
'intern/BSP_MeshPrimitives.cpp',
|
|
|
|
'intern/BSP_Triangulate.cpp',
|
|
|
|
'intern/CSG_BooleanOps.cpp']
|
|
|
|
|
|
|
|
bsp_env.Append (CPPPATH = ['intern',
|
|
|
|
'../container',
|
|
|
|
'../moto/include',
|
|
|
|
'../memutil'])
|
|
|
|
|
2004-02-15 19:25:32 +00:00
|
|
|
bsp_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/blender_BSP', source=source_files)
|