blob: de01f25e67c203eda772b231b0bffa5e5211a44a (
plain) (
tree)
|
|
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")
SET(USE_NULL TRUE CACHE BOOL "enable/disable null output plugin")
SET(USE_WAVEOUT TRUE CACHE BOOL "enable/disable Win32 waveout plugin")
IF(USE_ALSA)
add_subdirectory(alsa)
ENDIF(USE_ALSA)
IF(USE_JACK)
add_subdirectory(jack)
ENDIF(USE_JACK)
IF(USE_OSS)
add_subdirectory(oss)
ENDIF(USE_OSS)
IF(USE_PULSE)
add_subdirectory(pulseaudio)
ENDIF(USE_PULSE)
IF(USE_NULL)
add_subdirectory(null)
ENDIF(USE_NULL)
IF(USE_WAVEOUT)
add_subdirectory(waveout)
ENDIF(USE_WAVEOUT)
|