2007-06-25 19:50:25 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
Import ('env')
|
|
|
|
|
|
|
|
|
|
source_files = ['dds_api.cpp', 'DirectDrawSurface.cpp', 'Stream.cpp', 'BlockDXT.cpp', 'ColorBlock.cpp', 'Image.cpp']
|
|
|
|
|
|
|
|
|
|
incs = ['.',
|
|
|
|
|
'../../',
|
2007-06-25 21:25:28 +00:00
|
|
|
'../..',
|
2007-06-25 19:50:25 +00:00
|
|
|
'..',
|
|
|
|
|
'../../../makesdna',
|
|
|
|
|
'../../../blenkernel',
|
|
|
|
|
'../../../blenlib',
|
|
|
|
|
'intern/include',
|
|
|
|
|
'#/intern/guardedalloc']
|
|
|
|
|
|
|
|
|
|
|
2007-06-25 21:25:28 +00:00
|
|
|
defs = ['WITH_DDS']
|
|
|
|
|
|
2008-12-23 21:20:34 +00:00
|
|
|
env.BlenderLib ('bf_dds', source_files, incs, defs, libtype=['core','player'], priority = [230, 105])
|