aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/General/CMakeLists.txt
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2008-02-28 20:50:37 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2008-02-28 20:50:37 +0000
commit32b99cd71c113f192c31c14b154600cfd71993cd (patch)
tree068b834710e643be42c2cb7bc15bd6fe6a46952a /src/plugins/General/CMakeLists.txt
parent6ee74cda4d4bff26a4b5ea079642bb9783e11d91 (diff)
downloadqmmp-32b99cd71c113f192c31c14b154600cfd71993cd.tar.gz
qmmp-32b99cd71c113f192c31c14b154600cfd71993cd.tar.bz2
qmmp-32b99cd71c113f192c31c14b154600cfd71993cd.zip
added notifier plugin
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@259 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/General/CMakeLists.txt')
-rw-r--r--src/plugins/General/CMakeLists.txt10
1 files changed, 9 insertions, 1 deletions
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)