forked from dolphin-emu/dolphin
		
	Start work on X11 input for wiimote plugin mapping (copy XTra-KrazzY's fix for PadSimple) git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3721 8ced0084-cf51-0410-be5f-012b33b47a6e
		
			
				
	
	
		
			20 lines
		
	
	
		
			330 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			330 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# -*- python -*-
 | 
						|
 | 
						|
Import('env')
 | 
						|
 | 
						|
files = [
 | 
						|
	'Configuration.cpp',
 | 
						|
	'EventHandler.cpp',
 | 
						|
	'InputCommon.cpp',
 | 
						|
	'SDL.cpp',
 | 
						|
	]
 | 
						|
 | 
						|
if env['HAVE_X11']:
 | 
						|
	files += [
 | 
						|
		"X11InputBase.cpp",
 | 
						|
		]
 | 
						|
 | 
						|
env_inputcommon = env.Clone()
 | 
						|
env_inputcommon.Append(CXXFLAGS = [ '-fPIC' ])
 | 
						|
env_inputcommon.StaticLibrary(env['local_libs'] + "inputcommon", files)
 |