diff options
| author | LPFaint99 <lpfaint99@gmail.com> | 2009-07-09 06:50:22 +0000 |
|---|---|---|
| committer | LPFaint99 <lpfaint99@gmail.com> | 2009-07-09 06:50:22 +0000 |
| commit | 722ee4cd069dc4a82f06fb77054121c827715843 (patch) | |
| tree | b039d51214b2692fd9e0e2a8e791c80b5bc3efa9 /Source/Core/InputCommon/Src/SConscript | |
| parent | 19ad53ea5878200f7657530935beed1365b20c4d (diff) | |
Move XInputBase from PadSimple to InputCommon,
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
Diffstat (limited to 'Source/Core/InputCommon/Src/SConscript')
| -rw-r--r-- | Source/Core/InputCommon/Src/SConscript | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/Core/InputCommon/Src/SConscript b/Source/Core/InputCommon/Src/SConscript index c5059b3222..13ee418d0d 100644 --- a/Source/Core/InputCommon/Src/SConscript +++ b/Source/Core/InputCommon/Src/SConscript @@ -9,6 +9,11 @@ files = [ '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) |
