6d8a7d7819
mistake, someone can please help fix, just trying to get things to compile here in the studio. You'll need to delete config.opts
54 lines
1.9 KiB
Python
54 lines
1.9 KiB
Python
#!/usr/bin/python
|
|
Import ('extra_includes')
|
|
Import ('user_options_dict')
|
|
Import ('library_env')
|
|
|
|
imbuf_env = library_env.Copy ()
|
|
|
|
source_files = ['intern/allocimbuf.c',
|
|
'intern/amiga.c',
|
|
'intern/anim.c',
|
|
'intern/anim5.c',
|
|
'intern/antialias.c',
|
|
'intern/bitplanes.c',
|
|
'intern/bmp.c',
|
|
'intern/cmap.c',
|
|
'intern/cspace.c',
|
|
'intern/data.c',
|
|
'intern/dither.c',
|
|
'intern/divers.c',
|
|
'intern/dynlibtiff.c',
|
|
'intern/filter.c',
|
|
'intern/ham.c',
|
|
'intern/hamx.c',
|
|
'intern/iff.c',
|
|
'intern/imageprocess.c',
|
|
'intern/iris.c',
|
|
'intern/jpeg.c',
|
|
'intern/png.c',
|
|
'intern/radiance_hdr.c',
|
|
'intern/readimage.c',
|
|
'intern/rectop.c',
|
|
'intern/rotate.c',
|
|
'intern/scaling.c',
|
|
'intern/targa.c',
|
|
'intern/tiff.c',
|
|
'intern/util.c',
|
|
'intern/writeimage.c']
|
|
|
|
imbuf_env.Append (CPPPATH = ['.',
|
|
'../imbuf',
|
|
'../makesdna',
|
|
'#/intern/guardedalloc',
|
|
'../blenlib',
|
|
'../avi',
|
|
'../quicktime',
|
|
'../blenkernel'])
|
|
|
|
imbuf_env.Append (CPPPATH = user_options_dict['JPEG_INCLUDE'])
|
|
imbuf_env.Append (CPPPATH = user_options_dict['PNG_INCLUDE'])
|
|
imbuf_env.Append (CPPPATH = user_options_dict['TIFF_INCLUDE'])
|
|
imbuf_env.Append (CPPPATH = user_options_dict['Z_INCLUDE'])
|
|
imbuf_env.Append (CPPPATH = extra_includes)
|
|
imbuf_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/blender_imbuf', source=source_files)
|