summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/Src/SConscript
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/InputCommon/Src/SConscript')
-rw-r--r--Source/Core/InputCommon/Src/SConscript19
1 files changed, 12 insertions, 7 deletions
diff --git a/Source/Core/InputCommon/Src/SConscript b/Source/Core/InputCommon/Src/SConscript
index acb0b83013..a8f5162449 100644
--- a/Source/Core/InputCommon/Src/SConscript
+++ b/Source/Core/InputCommon/Src/SConscript
@@ -22,15 +22,20 @@ if env['HAVE_WX']:
]
if icenv['HAVE_SDL']:
- files += [ 'ControllerInterface/SDL/SDL.cpp' ]
+ files += [
+ 'ControllerInterface/SDL/SDL.cpp'
+ ]
+
if sys.platform == 'darwin':
- files += [ 'ControllerInterface/OSX/OSX.cpp',
- 'ControllerInterface/OSX/OSXPrivate.mm' ]
+ files += [
+ 'ControllerInterface/OSX/OSX.cpp',
+ 'ControllerInterface/OSX/OSXPrivate.mm'
+ ]
+
if sys.platform == 'linux2':
- files += [ 'ControllerInterface/Xlib/Xlib.cpp' ]
-
+ files += [
+ 'ControllerInterface/Xlib/Xlib.cpp'
+ ]
icenv.Append(CXXFLAGS = [ '-fPIC' ])
icenv.StaticLibrary(env['local_libs'] + "inputcommon", files)
-
-