aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/General/CMakeLists.txt
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2009-01-23 16:22:56 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2009-01-23 16:22:56 +0000
commit95563aa52d1b15be8efcb23c979c40c0515cfa10 (patch)
tree3dbc3a50e83fe12fb510f28ee29299a7d3bda074 /src/plugins/General/CMakeLists.txt
parent9793ca4daeeffed1c2c2472c4697e354bf157902 (diff)
downloadqmmp-95563aa52d1b15be8efcb23c979c40c0515cfa10.tar.gz
qmmp-95563aa52d1b15be8efcb23c979c40c0515cfa10.tar.bz2
qmmp-95563aa52d1b15be8efcb23c979c40c0515cfa10.zip
hal support (experimental)
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@752 90c681e8-e032-0410-971d-27865f9a5e38
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)