From 3854e2bcca270c416e61dc71a88c3e32ae938fde Mon Sep 17 00:00:00 2001 From: Lioncash Date: Mon, 2 Apr 2018 08:15:18 -0400 Subject: [PATCH] D3D/CMakeLists: Migrate off add_dolphin_library Continues the migration work started in 3a4c3bbe01e7a44ec997f4fbf0b678fba6f2d46c --- Source/Core/VideoBackends/D3D/CMakeLists.txt | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Source/Core/VideoBackends/D3D/CMakeLists.txt b/Source/Core/VideoBackends/D3D/CMakeLists.txt index 1e3af890fb..88f8d67e30 100644 --- a/Source/Core/VideoBackends/D3D/CMakeLists.txt +++ b/Source/Core/VideoBackends/D3D/CMakeLists.txt @@ -1,4 +1,4 @@ -set(SRCS +add_library(videod3d BoundingBox.cpp BoundingBox.h D3DBase.cpp @@ -42,10 +42,11 @@ set(SRCS VideoBackend.h ) -set(LIBS - videocommon - SOIL +target_link_libraries(videod3d +PUBLIC common -) + videocommon -add_dolphin_library(videod3d "${SRCS}" "${LIBS}") +PRIVATE + SOIL +)