7e8ba5c84d
* Added more error prints for wrong definitions, for cases that would laters cause problems compiling or crash at runtime, and also made messages more clear. * Added some skeleton code for main/ID/mesh/vertex types for testing. * Added support for automatic arrays as collections using SDNA. * Changed how pointers to data work. Now they are always wrapped in a PointerRNA struct, which contains the data pointer and type, and also the data pointer and type of the ID datablock that this belongs to, since for example a vertex on it's own may not have enough information for some operations, it also needs the mesh. * Added some code for defining dependencies with RNA, and looking up data with paths like: scenes[0].objects["Cube"].data.verts[7].co. Note sure either will end up being used, this is experimental. http://wiki.blender.org/index.php/BlenderDev/Blender2.5/RNA
53 lines
1.8 KiB
Python
53 lines
1.8 KiB
Python
#!/usr/bin/python
|
|
import sys
|
|
import os
|
|
|
|
Import ('env')
|
|
cflags = ''
|
|
defines = []
|
|
root_build_dir=env['BF_BUILDDIR']
|
|
|
|
source_files = env.Glob('*.c')
|
|
|
|
# making rna_access.c part of both makesrna and blender seems to
|
|
# give conflict, how to solve?
|
|
source_files.remove('rna_access.c')
|
|
source_files.remove('rna_dependency.c')
|
|
|
|
makesrna_tool = env.Copy()
|
|
rna = env.Copy()
|
|
makesrna_tool.Append(CCFLAGS = '-DBASE_HEADER="\\"source/blender/makesrna/\\"" ')
|
|
|
|
makesrna_tool.Append (CPPPATH = ['#/intern/guardedalloc',
|
|
'../../blenlib',
|
|
'../../blenkernel',
|
|
'../../makesdna',
|
|
'../../makesrna'])
|
|
|
|
if env['OURPLATFORM'] == 'linuxcross':
|
|
makesrna_tool.Replace(CC='gcc')
|
|
makesrna_tool.Replace(AR='ar')
|
|
makesrna_tool.Replace(LINK='gcc')
|
|
|
|
if sys.platform != 'cygwin':
|
|
makesrna_tool.Append (CCFLAGS = cflags)
|
|
makesrna_tool.Append (CPPDEFINES = defines)
|
|
makesrna_tool.Append (LIBPATH = '#'+root_build_dir+'/lib')
|
|
if env['BF_PROFILE']:
|
|
makesrna_tool.Append (LINKFLAGS = env['BF_PROFILE_FLAGS'])
|
|
|
|
if env['OURPLATFORM'] == 'linux2' and root_build_dir[0]==os.sep:
|
|
makesrna = makesrna_tool.Program (target = root_build_dir+'/makesrna', source = source_files, LIBS=['bf_guardedalloc', 'bf_dna'])
|
|
else:
|
|
makesrna = makesrna_tool.Program (target = '#'+root_build_dir+'/makesrna', source = source_files, LIBS=['bf_guardedalloc', 'bf_dna'])
|
|
|
|
rna_dict = rna.Dictionary()
|
|
rna.Depends ('rna.c', makesrna)
|
|
if env['OURPLATFORM'] != 'linuxcross':
|
|
rna.Command ('rna.c', '', root_build_dir+os.sep+"makesrna $TARGET")
|
|
else:
|
|
rna.Command ('rna.c', '', root_build_dir+os.sep+"makesrna.exe $TARGET")
|
|
obj = ['intern/rna.c', 'intern/rna_access.c', 'intern/rna_dependency.c']
|
|
Return ('obj')
|
|
|