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

20 lines
330 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
]
if env['HAVE_X11']:
files += [
"X11InputBase.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)