Files
test/source/blender/imbuf/intern/dds/SConscript
Nathan Letwory 9216efcba2 == SCons ==
* bring back 'player' libtype, after investigation with ideasman.
  scons/mingw works nicely, for some reason msvc fails to link still, will look further into it.
2009-09-05 01:58:02 +00:00

20 lines
429 B
Python

#!/usr/bin/python
Import ('env')
source_files = ['dds_api.cpp', 'DirectDrawSurface.cpp', 'Stream.cpp', 'BlockDXT.cpp', 'ColorBlock.cpp', 'Image.cpp']
incs = ['.',
'../../',
'../..',
'..',
'../../../makesdna',
'../../../blenkernel',
'../../../blenlib',
'intern/include',
'#/intern/guardedalloc']
defs = ['WITH_DDS']
env.BlenderLib ('bf_dds', source_files, incs, defs, libtype=['core','player'], priority = [230,190])