From 6a0e9d9d815674bedccbcc8e4ba6c25dc52fa3df Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Sun, 23 Mar 2008 17:25:56 +0000 Subject: Pulse Audio output plugin git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@292 90c681e8-e032-0410-971d-27865f9a5e38 --- src/plugins/Output/CMakeLists.txt | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'src/plugins/Output/CMakeLists.txt') 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) -- cgit v1.2.3-13-gbd6f