Build missing BPFunctions.cpp with SCons.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6440 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Soren Jorvang 2010-11-18 23:25:40 +00:00
parent f8fbcecad6
commit 63aae7e5e0
2 changed files with 28 additions and 27 deletions

View file

@ -12,4 +12,4 @@ extern volatile u32 s_swapRequested;
void VideoFifo_CheckEFBAccess();
void VideoFifo_CheckSwapRequestAt(u32 xfbAddr, u32 fbWidth, u32 fbHeight);
#endif
#endif

View file

@ -3,45 +3,46 @@
Import('env')
files = [
'VideoConfig.cpp',
'BPFunctions.cpp',
'BPMemory.cpp',
'CPMemory.cpp',
'XFMemory.cpp',
'XFStructs.cpp',
'BPStructs.cpp',
'CPMemory.cpp',
'CommandProcessor.cpp',
'PixelEngine.cpp',
'memcpy_amd.cpp',
'OpcodeDecoding.cpp',
'TextureDecoder.cpp',
'XFMemory.cpp',
'XFBConvert.cpp',
'DLCache.cpp',
'Fifo.cpp',
'FramebufferManagerBase.cpp',
'HiresTextures.cpp',
'ImageWrite.cpp',
'IndexGenerator.cpp',
'MainBase.cpp',
'OnScreenDisplay.cpp',
'OpcodeDecoding.cpp',
'OpenCL/OCLTextureDecoder.cpp',
'PixelEngine.cpp',
'PixelShaderGen.cpp',
'PixelShaderManager.cpp',
'VertexShaderGen.cpp',
'VertexShaderManager.cpp',
'VertexLoaderManager.cpp',
'Profiler.cpp',
'RenderBase.cpp',
'Statistics.cpp',
'TextureCacheBase.cpp',
'TextureConversionShader.cpp',
'TextureDecoder.cpp',
'VertexLoader.cpp',
'VertexLoaderManager.cpp',
'VertexLoader_Color.cpp',
'VertexLoader_Normal.cpp',
'VertexLoader_Position.cpp',
'VertexLoader_TextCoord.cpp',
'TextureConversionShader.cpp',
'ImageWrite.cpp',
'MainBase.cpp',
'FramebufferManagerBase.cpp',
'RenderBase.cpp',
'VertexManagerBase.cpp',
'TextureCacheBase.cpp',
'Statistics.cpp',
'Fifo.cpp',
'VertexShaderGen.cpp',
'VertexShaderManager.cpp',
'VideoConfig.cpp',
'VideoState.cpp',
'Profiler.cpp',
'OnScreenDisplay.cpp',
'HiresTextures.cpp',
'DLCache.cpp',
'OpenCL/OCLTextureDecoder.cpp',
'XFBConvert.cpp',
'XFMemory.cpp',
'XFMemory.cpp',
'XFStructs.cpp',
'memcpy_amd.cpp',
]
env.StaticLibrary(env['local_libs'] + "videocommon", files)