dolphin/Source/Core/VideoCommon/Src/SConscript
Soren Jorvang 1bcad428ea Link the video plugin statically into the main binary on OS X.
This makes the OS X build more robust and should help pave the
way for the integration of the video plugins as well as LTO.

There are now no more global class level namespace conflicts left,
as evidenced by the fact that Dolphin can be linked with -all_load,
not that you would want to.


git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6958 8ced0084-cf51-0410-be5f-012b33b47a6e
2011-01-29 04:52:19 +00:00

48 lines
985 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',
'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',
'XFStructs.cpp',
'memcpy_amd.cpp',
]
env.StaticLibrary(env['local_libs'] + "videocommon", files)