From 8b43a3185539f9de88f0151d3f53251304978afc Mon Sep 17 00:00:00 2001 From: Lioncash Date: Mon, 2 Apr 2018 08:24:39 -0400 Subject: [PATCH] Software/CMakeLists: Migrate off add_dolphin_library Continues the migration work started in 3a4c3bbe01e7a44ec997f4fbf0b678fba6f2d46c --- Source/Core/VideoBackends/Software/CMakeLists.txt | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Source/Core/VideoBackends/Software/CMakeLists.txt b/Source/Core/VideoBackends/Software/CMakeLists.txt index effa29cec8..cef19f5fb8 100644 --- a/Source/Core/VideoBackends/Software/CMakeLists.txt +++ b/Source/Core/VideoBackends/Software/CMakeLists.txt @@ -1,4 +1,4 @@ -set(SRCS +add_library(videosoftware Clipper.cpp DebugUtil.cpp EfbCopy.cpp @@ -16,11 +16,12 @@ set(SRCS TransformUnit.cpp ) -set(LIBS - videocommon - SOIL +target_link_libraries(videosoftware +PUBLIC common + videocommon + +PRIVATE + SOIL ${X11_LIBRARIES} ) - -add_dolphin_library(videosoftware "${SRCS}" "${LIBS}")