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}") -