From 32b99cd71c113f192c31c14b154600cfd71993cd Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Thu, 28 Feb 2008 20:50:37 +0000 Subject: added notifier plugin git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@259 90c681e8-e032-0410-971d-27865f9a5e38 --- src/plugins/General/CMakeLists.txt | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'src/plugins/General/CMakeLists.txt') diff --git a/src/plugins/General/CMakeLists.txt b/src/plugins/General/CMakeLists.txt index 793d41401..1dfa8e373 100644 --- a/src/plugins/General/CMakeLists.txt +++ b/src/plugins/General/CMakeLists.txt @@ -1,6 +1,7 @@ SET(USE_DBUS TRUE CACHE BOOL "enable/disable dbus plugin") SET(USE_SCROBBLER TRUE CACHE BOOL "enable/disable scrobbler plugin") SET(USE_STATICON TRUE CACHE BOOL "enable/disable status icon plugin") +SET(USE_NOTIFIER TRUE CACHE BOOL "enable/disable notifier plugin") IF(USE_DBUS) MESSAGE(STATUS "DBUS ON") @@ -21,4 +22,11 @@ MESSAGE( STATUS "STATICON ON") add_subdirectory(statusicon) ELSE(USE_STATICON) MESSAGE( STATUS "STATICON OFF") -ENDIF(USE_STATICON) \ No newline at end of file +ENDIF(USE_STATICON) + +IF(USE_NOTIFIER) +MESSAGE(STATUS "NOTIFIER ON") +add_subdirectory(notifier) +ELSE(USE_NOTIFIER) +MESSAGE(STATUS "NOTIFIER OFF") +ENDIF(USE_NOTIFIER) -- cgit v1.2.3-13-gbd6f