From d4f8502ad13a6ae643fcc740c72baa07676503e2 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Mon, 2 Apr 2018 08:16:59 -0400 Subject: [PATCH] Null/CMakeLists: Migrate off add_dolphin_library Continues the migration work started in 3a4c3bbe01e7a44ec997f4fbf0b678fba6f2d46c --- Source/Core/VideoBackends/Null/CMakeLists.txt | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/Source/Core/VideoBackends/Null/CMakeLists.txt b/Source/Core/VideoBackends/Null/CMakeLists.txt index b89acd85e8..d77c9ef96d 100644 --- a/Source/Core/VideoBackends/Null/CMakeLists.txt +++ b/Source/Core/VideoBackends/Null/CMakeLists.txt @@ -1,14 +1,12 @@ -set(SRCS +add_library(videonull NullBackend.cpp NullTexture.cpp Render.cpp VertexManager.cpp ) -set(LIBS - videocommon +target_link_libraries(videonull +PUBLIC common + videocommon ) - -add_dolphin_library(videonull "${SRCS}" "${LIBS}") -