From 05719ac81ab1e784c7aeb85af1e9b227b9cdbe83 Mon Sep 17 00:00:00 2001 From: Soren Jorvang Date: Thu, 3 Mar 2011 19:44:56 +0000 Subject: Move SConscript files out from the Src subdirectories to be consistent with the other build systems. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7282 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/VideoCommon/SConscript | 48 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 Source/Core/VideoCommon/SConscript (limited to 'Source/Core/VideoCommon/SConscript') diff --git a/Source/Core/VideoCommon/SConscript b/Source/Core/VideoCommon/SConscript new file mode 100644 index 0000000000..5499f422db --- /dev/null +++ b/Source/Core/VideoCommon/SConscript @@ -0,0 +1,48 @@ +# -*- python -*- + +Import('env') + +files = [ + 'Src/BPFunctions.cpp', + 'Src/BPMemory.cpp', + 'Src/BPStructs.cpp', + 'Src/CPMemory.cpp', + 'Src/CommandProcessor.cpp', + 'Src/DLCache.cpp', + 'Src/Debugger.cpp', + 'Src/Fifo.cpp', + 'Src/FramebufferManagerBase.cpp', + 'Src/HiresTextures.cpp', + 'Src/ImageWrite.cpp', + 'Src/IndexGenerator.cpp', + 'Src/LightingShaderGen.cpp', + 'Src/MainBase.cpp', + 'Src/OnScreenDisplay.cpp', + 'Src/OpcodeDecoding.cpp', + 'Src/OpenCL.cpp', + 'Src/OpenCL/OCLTextureDecoder.cpp', + 'Src/PixelEngine.cpp', + 'Src/PixelShaderGen.cpp', + 'Src/PixelShaderManager.cpp', + 'Src/RenderBase.cpp', + 'Src/Statistics.cpp', + 'Src/TextureCacheBase.cpp', + 'Src/TextureConversionShader.cpp', + 'Src/TextureDecoder.cpp', + 'Src/VertexLoader.cpp', + 'Src/VertexLoaderManager.cpp', + 'Src/VertexLoader_Color.cpp', + 'Src/VertexLoader_Normal.cpp', + 'Src/VertexLoader_Position.cpp', + 'Src/VertexLoader_TextCoord.cpp', + 'Src/VertexManagerBase.cpp', + 'Src/VertexShaderGen.cpp', + 'Src/VertexShaderManager.cpp', + 'Src/VideoConfig.cpp', + 'Src/VideoState.cpp', + 'Src/XFMemory.cpp', + 'Src/XFStructs.cpp', + 'Src/memcpy_amd.cpp', + ] + +env['LIBS'] += env.StaticLibrary('videocommon', files) -- cgit v1.2.3