aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/General/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/General/CMakeLists.txt')
-rw-r--r--src/plugins/General/CMakeLists.txt11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/plugins/General/CMakeLists.txt b/src/plugins/General/CMakeLists.txt
index 6e69595da..c79d34025 100644
--- a/src/plugins/General/CMakeLists.txt
+++ b/src/plugins/General/CMakeLists.txt
@@ -1,12 +1,13 @@
-SET(USE_DBUS TRUE CACHE BOOL "enable/disable dbus plugin")
+SET(USE_MPRIS TRUE CACHE BOOL "enable/disable mpris 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")
SET(USE_LYRICS TRUE CACHE BOOL "enable/disable lyrics version")
+SET(USE_HAL TRUE CACHE BOOL "enable/disable hal plugin")
-IF(USE_DBUS)
+IF(USE_MPRIS)
add_subdirectory(mpris)
-ENDIF(USE_DBUS)
+ENDIF(USE_MPRIS)
IF(USE_SCROBBLER)
add_subdirectory(scrobbler)
@@ -23,3 +24,7 @@ ENDIF(USE_NOTIFIER)
IF(USE_LYRICS)
add_subdirectory(lyrics)
ENDIF(USE_LYRICS)
+
+IF(USE_HAL)
+add_subdirectory(hal)
+ENDIF(USE_HAL)