From 22be923b91654b7b5b0fd0ed60183b90c4d1d660 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Mon, 2 Apr 2018 08:31:55 -0400 Subject: [PATCH] CMakeLists: Remove add_dolphin_library macro With all library targets migrated off add_dolphin_library, we can finally remove it --- Source/CMakeLists.txt | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Source/CMakeLists.txt b/Source/CMakeLists.txt index a16b31cb20..652b5f5422 100644 --- a/Source/CMakeLists.txt +++ b/Source/CMakeLists.txt @@ -35,12 +35,6 @@ endif() add_definitions(-D__STDC_LIMIT_MACROS) add_definitions(-D__STDC_CONSTANT_MACROS) -# DEPRECATED: When introducing new libraries, do it explicitly. -macro(add_dolphin_library lib srcs libs) - add_library(${lib} STATIC ${srcs}) - target_link_libraries(${lib} PUBLIC ${libs}) -endmacro() - add_subdirectory(Core) if (ANDROID) add_subdirectory(Android/jni)