Makes text editors identify SConscripts as Python, and syntax highlight properly.
15 lines
332 B
Python
15 lines
332 B
Python
#!/usr/bin/python
|
|
Import ('user_options_dict')
|
|
Import ('library_env')
|
|
|
|
makesdna_env = library_env.Copy ()
|
|
|
|
objs = []
|
|
|
|
o = SConscript('intern/SConscript')
|
|
objs.append (o)
|
|
|
|
makesdna_env.Append (CPPPATH = ['#/intern/guardedalloc'])
|
|
|
|
makesdna_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/blender_makesdna', source=objs)
|