Files
dolphin/Source/Core/VideoCommon/Src/SConscript
T

47 lines
931 B
Python
Raw Normal View History

# -*- python -*-
2008-09-21 19:54:29 +00:00
Import('env')
files = [
2009-09-13 09:23:30 +00:00
'VideoConfig.cpp',
2009-06-22 09:31:30 +00:00
'BPMemory.cpp',
2008-12-26 13:19:27 +00:00
'CPMemory.cpp',
'XFMemory.cpp',
'XFStructs.cpp',
2009-06-22 09:31:30 +00:00
'BPStructs.cpp',
'CommandProcessor.cpp',
'PixelEngine.cpp',
2008-12-26 13:19:27 +00:00
'memcpy_amd.cpp',
2008-12-25 20:11:42 +00:00
'OpcodeDecoding.cpp',
2008-12-26 13:19:27 +00:00
'TextureDecoder.cpp',
'XFMemory.cpp',
'XFBConvert.cpp',
'IndexGenerator.cpp',
2008-12-26 17:33:53 +00:00
'PixelShaderGen.cpp',
2008-12-26 13:19:27 +00:00
'PixelShaderManager.cpp',
2008-12-26 17:33:53 +00:00
'VertexShaderGen.cpp',
2008-12-26 13:19:27 +00:00
'VertexShaderManager.cpp',
'VertexLoaderManager.cpp',
2008-12-26 13:19:27 +00:00
'VertexLoader.cpp',
'VertexLoader_Color.cpp',
'VertexLoader_Normal.cpp',
'VertexLoader_Position.cpp',
'VertexLoader_TextCoord.cpp',
'TextureConversionShader.cpp',
2008-12-26 13:19:27 +00:00
'ImageWrite.cpp',
'NativeVertexWriter.cpp',
'Statistics.cpp',
'Fifo.cpp',
'VideoState.cpp',
'Profiler.cpp',
'OnScreenDisplay.cpp',
2009-05-07 07:43:56 +00:00
'HiresTextures.cpp',
]
2010-06-10 14:18:21 +00:00
if env['HAVE_OPENCL']:
files += [
'OpenCL/OCLTextureDecoder.cpp',
]
2010-06-10 14:18:21 +00:00
env.StaticLibrary(env['local_libs'] + "videocommon", files)