dolphin/Source/Core/InputCommon/Src/SConscript
John Peterson c225e83913 InputCommon and nJoy: More build settings
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2149 8ced0084-cf51-0410-be5f-012b33b47a6e
2009-02-08 14:55:51 +00:00

14 lines
251 B
Python

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