mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-11 16:49:12 +01:00
722ee4cd06
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)
|