diff --git a/SConstruct b/SConstruct index e935ac81e8..28fafa39f1 100644 --- a/SConstruct +++ b/SConstruct @@ -68,7 +68,7 @@ dirs = [ 'Source/Plugins/Plugin_DSP_LLE/Src', 'Source/Plugins/Plugin_PadSimple/Src', 'Source/Plugins/Plugin_PadSimpleEvnt/Src', -# 'Source/Plugins/Plugin_nJoy_SDL/Src', + 'Source/Plugins/Plugin_nJoy_SDL/Src', 'Source/Plugins/Plugin_nJoy_Testing/Src', 'Source/Plugins/Plugin_Wiimote/Src', 'Source/Core/DolphinWX/Src', diff --git a/Source/Plugins/Plugin_Wiimote/Src/SConscript b/Source/Plugins/Plugin_Wiimote/Src/SConscript index ec7951ad95..2ea2af9672 100644 --- a/Source/Plugins/Plugin_Wiimote/Src/SConscript +++ b/Source/Plugins/Plugin_Wiimote/Src/SConscript @@ -25,7 +25,7 @@ if wmenv['HAVE_WX']: "FillReport.cpp", ] -libs = [ 'common' ] +libs = [ 'common', 'inputcommon' ] cxxflags = [ '-fPIC' ] diff --git a/Source/Plugins/Plugin_nJoy_SDL/Src/SConscript b/Source/Plugins/Plugin_nJoy_SDL/Src/SConscript index e5e96b3d71..3b28332a6e 100644 --- a/Source/Plugins/Plugin_nJoy_SDL/Src/SConscript +++ b/Source/Plugins/Plugin_nJoy_SDL/Src/SConscript @@ -25,7 +25,7 @@ if padenv['HAVE_WX']: padenv.Append( CXXFLAGS = [ '-fPIC' ], - LIBS = [ 'common' ], + LIBS = [ 'common', 'inputcommon' ], ) padenv.SharedLibrary(env['plugin_dir']+name, files)