mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
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
This commit is contained in:
22
Source/Plugins/Plugin_VideoOGL/SConscript
Normal file
22
Source/Plugins/Plugin_VideoOGL/SConscript
Normal file
@ -0,0 +1,22 @@
|
||||
# -*- python -*-
|
||||
|
||||
Import('env')
|
||||
import os
|
||||
import sys
|
||||
|
||||
files = [
|
||||
'Src/FramebufferManager.cpp',
|
||||
'Src/GLUtil.cpp',
|
||||
'Src/NativeVertexFormat.cpp',
|
||||
'Src/PixelShaderCache.cpp',
|
||||
'Src/PostProcessing.cpp',
|
||||
'Src/RasterFont.cpp',
|
||||
'Src/Render.cpp',
|
||||
'Src/TextureCache.cpp',
|
||||
'Src/TextureConverter.cpp',
|
||||
'Src/VertexManager.cpp',
|
||||
'Src/VertexShaderCache.cpp',
|
||||
'Src/main.cpp',
|
||||
]
|
||||
|
||||
env['LIBS'] += env.StaticLibrary('videoogl', files)
|
@ -1,22 +0,0 @@
|
||||
# -*- python -*-
|
||||
|
||||
Import('env')
|
||||
import os
|
||||
import sys
|
||||
|
||||
files = [
|
||||
'RasterFont.cpp',
|
||||
'Render.cpp',
|
||||
'TextureCache.cpp',
|
||||
'NativeVertexFormat.cpp',
|
||||
'PixelShaderCache.cpp',
|
||||
'VertexShaderCache.cpp',
|
||||
'TextureConverter.cpp',
|
||||
'VertexManager.cpp',
|
||||
'PostProcessing.cpp',
|
||||
'FramebufferManager.cpp',
|
||||
'main.cpp',
|
||||
'GLUtil.cpp'
|
||||
]
|
||||
|
||||
env['LIBS'] += env.StaticLibrary('videoogl', files)
|
38
Source/Plugins/Plugin_VideoSoftware/SConscript
Normal file
38
Source/Plugins/Plugin_VideoSoftware/SConscript
Normal file
@ -0,0 +1,38 @@
|
||||
# -*- python -*-
|
||||
|
||||
Import('env')
|
||||
import os
|
||||
import sys
|
||||
|
||||
files = [
|
||||
'Src/BPMemLoader.cpp',
|
||||
'Src/CPMemLoader.cpp',
|
||||
'Src/Clipper.cpp',
|
||||
'Src/DebugUtil.cpp',
|
||||
'Src/EfbCopy.cpp',
|
||||
'Src/EfbInterface.cpp',
|
||||
'Src/HwRasterizer.cpp',
|
||||
'Src/OpcodeDecoder.cpp',
|
||||
'Src/Rasterizer.cpp',
|
||||
'Src/SWCommandProcessor.cpp',
|
||||
'Src/SWPixelEngine.cpp',
|
||||
'Src/SWRenderer.cpp',
|
||||
'Src/SWStatistics.cpp',
|
||||
'Src/SWVertexLoader.cpp',
|
||||
'Src/SWVideoConfig.cpp',
|
||||
'Src/SWmain.cpp',
|
||||
'Src/SetupUnit.cpp',
|
||||
'Src/Tev.cpp',
|
||||
'Src/TextureEncoder.cpp',
|
||||
'Src/TextureSampler.cpp',
|
||||
'Src/TransformUnit.cpp',
|
||||
'Src/XFMemLoader.cpp',
|
||||
]
|
||||
|
||||
if not env['nowx']:
|
||||
files += ['Src/VideoConfigDialog.cpp']
|
||||
|
||||
if sys.platform == 'win32':
|
||||
files += ['Src/Win32.cpp']
|
||||
|
||||
env['LIBS'] += env.StaticLibrary('videosoftware', files)
|
@ -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)
|
Reference in New Issue
Block a user