summaryrefslogtreecommitdiff
path: root/Source/Plugins/Plugin_VideoSoftware/Src/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/Plugins/Plugin_VideoSoftware/Src/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/Plugins/Plugin_VideoSoftware/Src/SConscript')
-rw-r--r--Source/Plugins/Plugin_VideoSoftware/Src/SConscript38
1 files changed, 0 insertions, 38 deletions
diff --git a/Source/Plugins/Plugin_VideoSoftware/Src/SConscript b/Source/Plugins/Plugin_VideoSoftware/Src/SConscript
deleted file mode 100644
index 9fc42dd9f3..0000000000
--- a/Source/Plugins/Plugin_VideoSoftware/Src/SConscript
+++ /dev/null
@@ -1,38 +0,0 @@
-# -*- python -*-
-
-Import('env')
-import os
-import sys
-
-files = [
- 'BPMemLoader.cpp',
- 'Clipper.cpp',
- 'SWCommandProcessor.cpp',
- 'CPMemLoader.cpp',
- 'DebugUtil.cpp',
- 'EfbCopy.cpp',
- 'EfbInterface.cpp',
- 'HwRasterizer.cpp',
- 'SWmain.cpp',
- 'OpcodeDecoder.cpp',
- 'SWPixelEngine.cpp',
- 'Rasterizer.cpp',
- 'SWRenderer.cpp',
- 'SetupUnit.cpp',
- 'SWStatistics.cpp',
- 'Tev.cpp',
- 'TextureEncoder.cpp',
- 'TextureSampler.cpp',
- 'TransformUnit.cpp',
- 'SWVertexLoader.cpp',
- 'SWVideoConfig.cpp',
- 'XFMemLoader.cpp',
- ]
-
-if not env['nowx']:
- files += [ 'VideoConfigDialog.cpp' ]
-
-if sys.platform == 'win32':
- files += [ 'Win32.cpp' ]
-
-env['LIBS'] += env.StaticLibrary('videosoftware', files)