forked from dolphin-emu/dolphin
		
	git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@938 8ced0084-cf51-0410-be5f-012b33b47a6e
		
			
				
	
	
		
			23 lines
		
	
	
		
			385 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			385 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# -*- python -*- 
 | 
						|
 | 
						|
Import('env')
 | 
						|
 | 
						|
files = [
 | 
						|
	"BPMemory.cpp",
 | 
						|
	"CPMemory.cpp",
 | 
						|
	"LookUpTables.cpp",
 | 
						|
	"TextureDecoder.cpp",
 | 
						|
	"XFMemory.cpp",
 | 
						|
	"XFBConvert.cpp",
 | 
						|
	"PixelShader.cpp",
 | 
						|
	"VertexShader.cpp",
 | 
						|
	"Statistics.cpp",
 | 
						|
	"Fifo.cpp",
 | 
						|
	"VideoState.cpp",
 | 
						|
	"Profiler.cpp",
 | 
						|
	]
 | 
						|
 | 
						|
env_common = env.Clone()
 | 
						|
env_common.Append(CXXFLAGS = [ '-fPIC' ])
 | 
						|
env_common.StaticLibrary("videocommon", files)
 |