This repository has been archived on 2023-10-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
blender-archive/source/blender/makesdna/SConscript

19 lines
451 B
Python
Raw Normal View History

2004-01-04 21:11:59 +00:00
makesdna_env = Environment()
# Import the C flags set in the SConstruct file
Import ('cflags')
Import ('cxxflags')
Import ('defines')
makesdna_env.Append (CCFLAGS = cflags)
makesdna_env.Append (CXXFLAGS = cxxflags)
makesdna_env.Append (CPPDEFINES = defines)
objs = []
o = SConscript('intern/SConscript')
objs.append (o)
makesdna_env.Append (CPPPATH = ['#/intern/guardedalloc'])
makesdna_env.Library (target='#/lib/blender_makesdna', source=objs)