From 8f77609d368b618d3fd76cceed58bacb2f8ef854 Mon Sep 17 00:00:00 2001 From: "kevin.urban" Date: Wed, 26 Feb 2014 23:07:21 +0100 Subject: [PATCH] minor cleanup in CMakeLists.txt for osxnotificationcenter --- src/plugins/backends/osxnotificationcenter/CMakeLists.txt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/plugins/backends/osxnotificationcenter/CMakeLists.txt b/src/plugins/backends/osxnotificationcenter/CMakeLists.txt index 13a886e..7ffdfd6 100644 --- a/src/plugins/backends/osxnotificationcenter/CMakeLists.txt +++ b/src/plugins/backends/osxnotificationcenter/CMakeLists.txt @@ -2,11 +2,9 @@ if(APPLE) message(STATUS "adding osx notification center backend") #find_library(FOUNDATION Foundation) set(OSXNOTIFICATIONCENTER_SRC - osxnotificationcenter.mm - #NotificationCenterDelegate.m + osxnotificationcenter.mm ) add_library(libsnore_backend_osxnotificationcenter MODULE ${OSXNOTIFICATIONCENTER_SRC}) - #target_link_libraries(libsnore_backend_osxnotificationcenter snorecore ${FOUNDATION}) target_link_libraries(libsnore_backend_osxnotificationcenter snorecore /System/Library/Frameworks/Foundation.framework) install(TARGETS libsnore_backend_osxnotificationcenter ${SNORE_PLUGIN_INSTALL_PATH}) endif(APPLE)