From e236d285858415e7c63a6b5a35f7c24306a6a930 Mon Sep 17 00:00:00 2001 From: Ryan Houdek Date: Sun, 19 Oct 2014 07:36:33 -0500 Subject: [PATCH] Remove a hard dependency from libGL from the software renderer. I must have missed this when dropping OpenGL library includes. This is annoying when on a system that doesn't have libGL. --- Source/Core/VideoBackends/Software/CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/Source/Core/VideoBackends/Software/CMakeLists.txt b/Source/Core/VideoBackends/Software/CMakeLists.txt index 42381c02d2..b12ade865c 100644 --- a/Source/Core/VideoBackends/Software/CMakeLists.txt +++ b/Source/Core/VideoBackends/Software/CMakeLists.txt @@ -25,7 +25,6 @@ set(LIBS videocommon SOIL common ${X11_LIBRARIES} - ${OPENGL_LIBRARIES} ${wxWidgets_LIBRARIES}) add_dolphin_library(videosoftware "${SRCS}" "${LIBS}")