blob: c79d34025903a5e8feb71bed94463573bfecfcd2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
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_MPRIS)
add_subdirectory(mpris)
ENDIF(USE_MPRIS)
IF(USE_SCROBBLER)
add_subdirectory(scrobbler)
ENDIF(USE_SCROBBLER)
IF(USE_STATICON)
add_subdirectory(statusicon)
ENDIF(USE_STATICON)
IF(USE_NOTIFIER)
add_subdirectory(notifier)
ENDIF(USE_NOTIFIER)
IF(USE_LYRICS)
add_subdirectory(lyrics)
ENDIF(USE_LYRICS)
IF(USE_HAL)
add_subdirectory(hal)
ENDIF(USE_HAL)
|