summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/OGL
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-04-02 08:22:37 -0400
committerLioncash <mathew1800@gmail.com>2018-04-02 08:22:39 -0400
commita3c53ff7546e4cffa057aaae246a8ea1c3d8107e (patch)
tree7cf947353f5d596d890e333c98c3b843957ac55a /Source/Core/VideoBackends/OGL
parentd4f8502ad13a6ae643fcc740c72baa07676503e2 (diff)
OGL/CMakeLists: Migrate off add_dolphin_library
Continues the migration work started in 3a4c3bbe01e7a44ec997f4fbf0b678fba6f2d46c
Diffstat (limited to 'Source/Core/VideoBackends/OGL')
-rw-r--r--Source/Core/VideoBackends/OGL/CMakeLists.txt11
1 files changed, 6 insertions, 5 deletions
diff --git a/Source/Core/VideoBackends/OGL/CMakeLists.txt b/Source/Core/VideoBackends/OGL/CMakeLists.txt
index 5ecc1a4fb2..70aa29cef4 100644
--- a/Source/Core/VideoBackends/OGL/CMakeLists.txt
+++ b/Source/Core/VideoBackends/OGL/CMakeLists.txt
@@ -1,4 +1,4 @@
-set(SRCS
+add_library(videoogl
BoundingBox.cpp
FramebufferManager.cpp
main.cpp
@@ -18,11 +18,12 @@ set(SRCS
VertexManager.cpp
)
-set(LIBS ${LIBS}
+target_link_libraries(videoogl
+PUBLIC
+ common
videocommon
+
+PRIVATE
SOIL
- common
${X11_LIBRARIES}
)
-
-add_dolphin_library(videoogl "${SRCS}" "${LIBS}")