Files
test/source/blender/imbuf/SConscript
Nathan Letwory e579793652 - [win32] updated SConscripts to use new configuration method (config.opts).
NOTE: ODE support needs still to be reviewed, so disable gameengine for now.
2004-02-21 19:00:31 +00:00

54 lines
1.8 KiB
Python

imbuf_env = Environment()
# Import the C flags set in the SConstruct file
Import ('cflags')
Import ('cxxflags')
Import ('defines')
Import ('extra_includes')
Import ('user_options_dict')
imbuf_env.Append (CCFLAGS = cflags)
imbuf_env.Append (CXXFLAGS = cxxflags)
imbuf_env.Append (CPPDEFINES = defines)
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/filter.c',
'intern/ham.c',
'intern/hamx.c',
'intern/iff.c',
'intern/imageprocess.c',
'intern/iris.c',
'intern/jpeg.c',
'intern/png.c',
'intern/readimage.c',
'intern/rectop.c',
'intern/rotate.c',
'intern/scaling.c',
'intern/targa.c',
'intern/util.c',
'intern/writeimage.c']
imbuf_env.Append (CPPPATH = ['.',
'../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['Z_INCLUDE'])
imbuf_env.Append (CPPPATH = extra_includes)
imbuf_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/blender_imbuf', source=source_files)