mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 13:57:57 -07:00
a754f8e703
so the recent addition of VideoCommon/Src/Debugger.h clashed with DebuggerWX/Src/Debugger.h. The latter had atrophied anyway, so just get rid of it to resolve the conflict. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6526 8ced0084-cf51-0410-be5f-012b33b47a6e
50 lines
1019 B
Python
50 lines
1019 B
Python
# -*- python -*-
|
|
|
|
Import('env')
|
|
|
|
files = [
|
|
'BPFunctions.cpp',
|
|
'BPMemory.cpp',
|
|
'BPStructs.cpp',
|
|
'CPMemory.cpp',
|
|
'CommandProcessor.cpp',
|
|
'Debugger.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',
|
|
'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',
|
|
'VertexManagerBase.cpp',
|
|
'VertexShaderGen.cpp',
|
|
'VertexShaderManager.cpp',
|
|
'VideoConfig.cpp',
|
|
'VideoState.cpp',
|
|
'XFBConvert.cpp',
|
|
'XFMemory.cpp',
|
|
'XFMemory.cpp',
|
|
'XFStructs.cpp',
|
|
'memcpy_amd.cpp',
|
|
]
|
|
|
|
env.StaticLibrary(env['local_libs'] + "videocommon", files)
|