From 7fe8afefa5c82484a82776567832d761a989e409 Mon Sep 17 00:00:00 2001 From: def Date: Thu, 30 Apr 2020 15:05:47 +0200 Subject: [PATCH] Don't require notify on Linux Especially when only building server and not client --- cmake/FindNotify.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/FindNotify.cmake b/cmake/FindNotify.cmake index fe19fbd7c..056e21b9a 100644 --- a/cmake/FindNotify.cmake +++ b/cmake/FindNotify.cmake @@ -1,4 +1,4 @@ -find_package(PkgConfig REQUIRED QUIET) -pkg_check_modules(NOTIFY REQUIRED QUIET libnotify) +find_package(PkgConfig QUIET) +pkg_check_modules(NOTIFY QUIET libnotify) include(FindPackageHandleStandardArgs) find_package_handle_standard_args(Notify DEFAULT_MSG NOTIFY_LIBRARIES NOTIFY_INCLUDE_DIRS)