mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-13 17:49:14 +01:00
fdaa0e8d4c
Conflicts are due to same file name when omitting full path git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4982 8ced0084-cf51-0410-be5f-012b33b47a6e
20 lines
335 B
Python
20 lines
335 B
Python
# -*- python -*-
|
|
|
|
Import('env')
|
|
|
|
files = [
|
|
'Configuration.cpp',
|
|
'EventHandler.cpp',
|
|
'InputCommon.cpp',
|
|
'SDL_Util.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)
|