diff options
Diffstat (limited to 'src/plugins/General/CMakeLists.txt')
| -rw-r--r-- | src/plugins/General/CMakeLists.txt | 10 |
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) |
