Files
dolphin/Source/Core/InputCommon/Src/SConscript
T

15 lines
271 B
Python
Raw Normal View History

# -*- python -*-
2009-01-04 19:54:56 +00:00
Import('env')
files = [
2009-02-08 14:55:51 +00:00
'Configuration.cpp',
2009-01-04 19:54:56 +00:00
'EventHandler.cpp',
'InputCommon.cpp',
2009-02-08 14:55:51 +00:00
'SDL.cpp',
2009-01-04 19:54:56 +00:00
]
env_inputcommon = env.Clone()
env_inputcommon.Append(CXXFLAGS = [ '-fPIC' ])
2009-04-12 21:30:22 +00:00
env_inputcommon.StaticLibrary(env['local_libs'] + "inputcommon", files)