From 95563aa52d1b15be8efcb23c979c40c0515cfa10 Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Fri, 23 Jan 2009 16:22:56 +0000 Subject: hal support (experimental) git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@752 90c681e8-e032-0410-971d-27865f9a5e38 --- src/plugins/General/CMakeLists.txt | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'src/plugins/General/CMakeLists.txt') 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) -- cgit v1.2.3-13-gbd6f