forked from dolphin-emu/dolphin
		
	Not yet functional. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7050 8ced0084-cf51-0410-be5f-012b33b47a6e
		
			
				
	
	
		
			40 lines
		
	
	
		
			707 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			707 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # -*- python -*-
 | |
| 
 | |
| Import('env')
 | |
| import os
 | |
| import sys
 | |
| 
 | |
| files = [
 | |
| 	'BPMemLoader.cpp',
 | |
| 	'Clipper.cpp',
 | |
| 	'SWCommandProcessor.cpp',
 | |
| 	'CPMemLoader.cpp',
 | |
| 	'DebugUtil.cpp',
 | |
| 	'EfbCopy.cpp',
 | |
| 	'EfbInterface.cpp',
 | |
| 	'SWGLUtil.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 env['HAVE_WX']:
 | |
| 	files += [ 'VideoConfigDialog.cpp' ]
 | |
| 
 | |
| if sys.platform == 'win32':
 | |
| 	files += [ 'Win32.cpp' ]
 | |
| 
 | |
| env.StaticLibrary(env['local_libs'] + 'plugin_videosoftware', files)
 |