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