2009-01-15 08:48:15 +02:00
|
|
|
# -*- python -*-
|
2008-09-21 22:54:29 +03:00
|
|
|
|
2008-07-20 14:02:41 +03:00
|
|
|
Import('env')
|
|
|
|
|
2008-08-27 01:28:42 +03:00
|
|
|
files = [
|
2010-11-19 01:25:40 +02:00
|
|
|
'BPFunctions.cpp',
|
2009-06-22 12:31:30 +03:00
|
|
|
'BPMemory.cpp',
|
|
|
|
'BPStructs.cpp',
|
2010-11-19 01:25:40 +02:00
|
|
|
'CPMemory.cpp',
|
2009-10-11 00:19:39 +03:00
|
|
|
'CommandProcessor.cpp',
|
2010-11-19 01:25:40 +02:00
|
|
|
'DLCache.cpp',
|
|
|
|
'Fifo.cpp',
|
|
|
|
'FramebufferManagerBase.cpp',
|
|
|
|
'HiresTextures.cpp',
|
|
|
|
'ImageWrite.cpp',
|
2009-03-01 00:10:38 +02:00
|
|
|
'IndexGenerator.cpp',
|
2011-02-06 01:57:12 +02:00
|
|
|
'LightingShaderGen.cpp',
|
2010-11-19 01:25:40 +02:00
|
|
|
'MainBase.cpp',
|
|
|
|
'OnScreenDisplay.cpp',
|
|
|
|
'OpcodeDecoding.cpp',
|
2011-01-31 05:02:23 +02:00
|
|
|
'OpenCL.cpp',
|
2010-11-19 01:25:40 +02:00
|
|
|
'OpenCL/OCLTextureDecoder.cpp',
|
|
|
|
'PixelEngine.cpp',
|
2008-12-26 19:33:53 +02:00
|
|
|
'PixelShaderGen.cpp',
|
2008-12-26 15:19:27 +02:00
|
|
|
'PixelShaderManager.cpp',
|
2010-11-19 01:25:40 +02:00
|
|
|
'RenderBase.cpp',
|
|
|
|
'Statistics.cpp',
|
|
|
|
'TextureCacheBase.cpp',
|
|
|
|
'TextureConversionShader.cpp',
|
|
|
|
'TextureDecoder.cpp',
|
2008-12-26 15:19:27 +02:00
|
|
|
'VertexLoader.cpp',
|
2010-11-19 01:25:40 +02:00
|
|
|
'VertexLoaderManager.cpp',
|
2008-12-26 15:19:27 +02:00
|
|
|
'VertexLoader_Color.cpp',
|
|
|
|
'VertexLoader_Normal.cpp',
|
|
|
|
'VertexLoader_Position.cpp',
|
|
|
|
'VertexLoader_TextCoord.cpp',
|
2010-10-03 03:41:06 +03:00
|
|
|
'VertexManagerBase.cpp',
|
2010-11-19 01:25:40 +02:00
|
|
|
'VertexShaderGen.cpp',
|
|
|
|
'VertexShaderManager.cpp',
|
|
|
|
'VideoConfig.cpp',
|
2008-12-26 15:19:27 +02:00
|
|
|
'VideoState.cpp',
|
2010-11-19 01:25:40 +02:00
|
|
|
'XFMemory.cpp',
|
|
|
|
'XFStructs.cpp',
|
|
|
|
'memcpy_amd.cpp',
|
2008-08-27 01:28:42 +03:00
|
|
|
]
|
2008-07-20 14:02:41 +03:00
|
|
|
|
2011-02-05 18:06:05 +02:00
|
|
|
if env['HAVE_WX']:
|
|
|
|
files += ['Debugger.cpp']
|
|
|
|
|
2011-02-04 02:46:56 +02:00
|
|
|
env['LIBS'] += env.StaticObject(files)
|