diff options
Diffstat (limited to 'src/plugins/Output/CMakeLists.txt')
| -rw-r--r-- | src/plugins/Output/CMakeLists.txt | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/plugins/Output/CMakeLists.txt b/src/plugins/Output/CMakeLists.txt index 864d945c1..5f13e4477 100644 --- a/src/plugins/Output/CMakeLists.txt +++ b/src/plugins/Output/CMakeLists.txt @@ -1,6 +1,7 @@ SET(USE_ALSA TRUE CACHE BOOL "enable/disable alsa plugin") SET(USE_JACK TRUE CACHE BOOL "enable/disable jack plugin") SET(USE_OSS TRUE CACHE BOOL "enable/disable oss plugin") +SET(USE_PULSE TRUE CACHE BOOL "enable/disable pulse audio plugin") IF(USE_ALSA) MESSAGE( STATUS "ALSA ON") @@ -21,4 +22,11 @@ MESSAGE( STATUS "OSS ON") add_subdirectory(oss) ELSE(USE_OSS) MESSAGE( STATUS "OSS OFF") -ENDIF(USE_OSS)
\ No newline at end of file +ENDIF(USE_OSS) + +IF(USE_PULSE) +MESSAGE( STATUS "PULSE AUDIO ON") +add_subdirectory(pulseaudio) +ELSE(USE_PULSE) +MESSAGE( STATUS "PULSE AUDIO ON") +ENDIF(USE_PULSE) |
