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:
parent
f8fbcecad6
commit
63aae7e5e0
|
@ -12,4 +12,4 @@ extern volatile u32 s_swapRequested;
|
||||||
void VideoFifo_CheckEFBAccess();
|
void VideoFifo_CheckEFBAccess();
|
||||||
void VideoFifo_CheckSwapRequestAt(u32 xfbAddr, u32 fbWidth, u32 fbHeight);
|
void VideoFifo_CheckSwapRequestAt(u32 xfbAddr, u32 fbWidth, u32 fbHeight);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -3,45 +3,46 @@
|
||||||
Import('env')
|
Import('env')
|
||||||
|
|
||||||
files = [
|
files = [
|
||||||
'VideoConfig.cpp',
|
'BPFunctions.cpp',
|
||||||
'BPMemory.cpp',
|
'BPMemory.cpp',
|
||||||
'CPMemory.cpp',
|
|
||||||
'XFMemory.cpp',
|
|
||||||
'XFStructs.cpp',
|
|
||||||
'BPStructs.cpp',
|
'BPStructs.cpp',
|
||||||
|
'CPMemory.cpp',
|
||||||
'CommandProcessor.cpp',
|
'CommandProcessor.cpp',
|
||||||
'PixelEngine.cpp',
|
'DLCache.cpp',
|
||||||
'memcpy_amd.cpp',
|
'Fifo.cpp',
|
||||||
'OpcodeDecoding.cpp',
|
'FramebufferManagerBase.cpp',
|
||||||
'TextureDecoder.cpp',
|
'HiresTextures.cpp',
|
||||||
'XFMemory.cpp',
|
'ImageWrite.cpp',
|
||||||
'XFBConvert.cpp',
|
|
||||||
'IndexGenerator.cpp',
|
'IndexGenerator.cpp',
|
||||||
|
'MainBase.cpp',
|
||||||
|
'OnScreenDisplay.cpp',
|
||||||
|
'OpcodeDecoding.cpp',
|
||||||
|
'OpenCL/OCLTextureDecoder.cpp',
|
||||||
|
'PixelEngine.cpp',
|
||||||
'PixelShaderGen.cpp',
|
'PixelShaderGen.cpp',
|
||||||
'PixelShaderManager.cpp',
|
'PixelShaderManager.cpp',
|
||||||
'VertexShaderGen.cpp',
|
'Profiler.cpp',
|
||||||
'VertexShaderManager.cpp',
|
'RenderBase.cpp',
|
||||||
'VertexLoaderManager.cpp',
|
'Statistics.cpp',
|
||||||
|
'TextureCacheBase.cpp',
|
||||||
|
'TextureConversionShader.cpp',
|
||||||
|
'TextureDecoder.cpp',
|
||||||
'VertexLoader.cpp',
|
'VertexLoader.cpp',
|
||||||
|
'VertexLoaderManager.cpp',
|
||||||
'VertexLoader_Color.cpp',
|
'VertexLoader_Color.cpp',
|
||||||
'VertexLoader_Normal.cpp',
|
'VertexLoader_Normal.cpp',
|
||||||
'VertexLoader_Position.cpp',
|
'VertexLoader_Position.cpp',
|
||||||
'VertexLoader_TextCoord.cpp',
|
'VertexLoader_TextCoord.cpp',
|
||||||
'TextureConversionShader.cpp',
|
|
||||||
'ImageWrite.cpp',
|
|
||||||
'MainBase.cpp',
|
|
||||||
'FramebufferManagerBase.cpp',
|
|
||||||
'RenderBase.cpp',
|
|
||||||
'VertexManagerBase.cpp',
|
'VertexManagerBase.cpp',
|
||||||
'TextureCacheBase.cpp',
|
'VertexShaderGen.cpp',
|
||||||
'Statistics.cpp',
|
'VertexShaderManager.cpp',
|
||||||
'Fifo.cpp',
|
'VideoConfig.cpp',
|
||||||
'VideoState.cpp',
|
'VideoState.cpp',
|
||||||
'Profiler.cpp',
|
'XFBConvert.cpp',
|
||||||
'OnScreenDisplay.cpp',
|
'XFMemory.cpp',
|
||||||
'HiresTextures.cpp',
|
'XFMemory.cpp',
|
||||||
'DLCache.cpp',
|
'XFStructs.cpp',
|
||||||
'OpenCL/OCLTextureDecoder.cpp',
|
'memcpy_amd.cpp',
|
||||||
]
|
]
|
||||||
|
|
||||||
env.StaticLibrary(env['local_libs'] + "videocommon", files)
|
env.StaticLibrary(env['local_libs'] + "videocommon", files)
|
||||||
|
|
Loading…
Reference in New Issue