Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Use correct linker flags for SDL.
  • Loading branch information
soreau committed Aug 28, 2012
1 parent 90af798 commit 6773261
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Core/DolphinWX/CMakeLists.txt
Expand Up @@ -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)
Expand Down

0 comments on commit 6773261

Please sign in to comment.