blender/intern/csg/SConscript
Kester Maddock d5fde6c48b Added #!/usr/bin/python standard script identifier to the start of SConscript files.
Makes text editors identify SConscripts as Python, and syntax highlight properly.
2004-05-16 13:07:20 +00:00

31 lines
897 B
Python

#!/usr/bin/python
csg_env = Environment()
# Import the C flags set in the SConstruct file
Import ('cflags')
Import ('cxxflags')
Import ('defines')
csg_env.Append (CCFLAGS = cflags)
csg_env.Append (CXXFLAGS = cxxflags)
csg_env.Append (CPPDEFINES = defines)
source_files = ['intern/CSG_BBoxTree.cpp',
'intern/CSG_ConnectedMeshWrapper.inl',
'intern/CSG_Math.inl',
'intern/CSG_Triangulate.inl',
'intern/blender/CSG_CsgOp.cpp',
'intern/blender/CSG_Interface.cpp',
'intern/CSG_BooleanOp.inl',
'intern/CSG_MeshWrapper.inl',
'intern/MT_Line3.cpp'
]
csg_env.Append (CPPPATH = ['intern',
'../container',
'../moto/include',
'../memutil',
'intern/blender',
'extern'])
csg_env.Library (target='#/lib/blender_BSP', source=source_files)