diff options
Diffstat (limited to 'src/plugins/Output/CMakeLists.txt')
| -rw-r--r-- | src/plugins/Output/CMakeLists.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/plugins/Output/CMakeLists.txt b/src/plugins/Output/CMakeLists.txt index 60c206692..867fe49fc 100644 --- a/src/plugins/Output/CMakeLists.txt +++ b/src/plugins/Output/CMakeLists.txt @@ -2,7 +2,8 @@ SET(USE_ALSA TRUE CACHE BOOL "enable/disable alsa plugin") SET(USE_JACK TRUE CACHE BOOL "enable/disable jack plugin") SET(USE_OSS FALSE CACHE BOOL "enable/disable oss plugin") SET(USE_OSS4 TRUE CACHE BOOL "enable/disable oss4 plugin") -SET(USE_PULSE TRUE CACHE BOOL "enable/disable pulse audio plugin") +SET(USE_PULSE TRUE CACHE BOOL "enable/disable pulseaudio plugin") +SET(USE_PIPEWIRE TRUE CACHE BOOL "enable/disable pipewire plugin") SET(USE_NULL TRUE CACHE BOOL "enable/disable null output plugin") SET(USE_WAVEOUT TRUE CACHE BOOL "enable/disable Win32 waveout plugin") SET(USE_DSOUND TRUE CACHE BOOL "enable/disable DirectSound plugin") @@ -30,6 +31,10 @@ IF(USE_PULSE) add_subdirectory(pulseaudio) ENDIF(USE_PULSE) +IF(USE_PIPEWIRE) +add_subdirectory(pipewire) +ENDIF(USE_PIPEWIRE) + IF(USE_NULL) add_subdirectory(null) ENDIF(USE_NULL) |
