From cc0e206c2735fc471acc4e06079d7723e413fa89 Mon Sep 17 00:00:00 2001 From: LAGonauta Date: Sun, 7 Mar 2021 08:21:54 -0300 Subject: [PATCH] Removed unused library on linker It is loaded dynamically --- plugins/windows-notification/CMakeLists.txt | 5 ----- 1 file changed, 5 deletions(-) diff --git a/plugins/windows-notification/CMakeLists.txt b/plugins/windows-notification/CMakeLists.txt index 0b8bbae1..90465fa3 100644 --- a/plugins/windows-notification/CMakeLists.txt +++ b/plugins/windows-notification/CMakeLists.txt @@ -60,11 +60,6 @@ if(NOT shlwapi_LIBRARY) message(FATAL_ERROR "shlwapi library not found") endif(NOT shlwapi_LIBRARY) -find_library(propsys_LIBRARY propsys libpropsys libpropsys.a HINTS ${CMAKE_C_IMPLICIT_LINK_DIRECTORIES}) -if(NOT propsys_LIBRARY) - message(FATAL_ERROR "propsys library not found") -endif(NOT propsys_LIBRARY) - find_library(ntdll_LIBRARY ntdll libntdll libntdll.a HINTS ${CMAKE_C_IMPLICIT_LINK_DIRECTORIES}) if(NOT ntdll_LIBRARY) message(FATAL_ERROR "ntdll library not found")