From 6773261a85d87bd7337689af55dd25c6963c7261 Mon Sep 17 00:00:00 2001 From: Scott Moreau Date: Tue, 28 Aug 2012 03:35:31 -0600 Subject: [PATCH] Use correct linker flags for SDL. --- Source/Core/DolphinWX/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/DolphinWX/CMakeLists.txt b/Source/Core/DolphinWX/CMakeLists.txt index 9a2d7a6804..ef41d4f279 100644 --- a/Source/Core/DolphinWX/CMakeLists.txt +++ b/Source/Core/DolphinWX/CMakeLists.txt @@ -13,11 +13,11 @@ set(LIBS core ${X11_LIBRARIES}) if(SDL2_FOUND) - set(LIBS ${LIBS} SDL2) + set(LIBS ${LIBS} ${SDL2_LIBRARY}) endif() if(SDL_FOUND) - set(LIBS ${LIBS} SDL) + set(LIBS ${LIBS} ${SDL_LIBRARY}) endif() if(LIBAV_FOUND)