dolphin/Source/Core/InputCommon/Src/SConscript
nakeee 0a3c3f7a6b moved the inputmanager to inputcommon
to avoid sdl dep in core


git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1988 8ced0084-cf51-0410-be5f-012b33b47a6e
2009-01-23 01:29:52 +00:00

13 lines
245 B
Python

# -*- python -*-
Import('env')
files = [
'EventHandler.cpp',
'InputCommon.cpp',
"InputManager.cpp",
]
env_inputcommon = env.Clone()
env_inputcommon.Append(CXXFLAGS = [ '-fPIC' ])
env_inputcommon.StaticLibrary("inputcommon", files)