summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/SConscript
diff options
context:
space:
mode:
authorSoren Jorvang <soren.jorvang@gmail.com>2011-03-03 19:44:56 +0000
committerSoren Jorvang <soren.jorvang@gmail.com>2011-03-03 19:44:56 +0000
commit05719ac81ab1e784c7aeb85af1e9b227b9cdbe83 (patch)
tree027c8f2c6749972d41787e1180ff01fab3c0fd5c /Source/Core/VideoCommon/SConscript
parent1e2d9223429e8bc52dab71fb2033f60dd72dea40 (diff)
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
Diffstat (limited to 'Source/Core/VideoCommon/SConscript')
-rw-r--r--Source/Core/VideoCommon/SConscript48
1 files changed, 48 insertions, 0 deletions
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)