blob: 420ec61263afe8933e8c077db1ad6a9df5139bb8 (
plain) (
tree)
|
|
SET(USE_MAD TRUE CACHE BOOL "enable/disable mad plugin")
SET(USE_FLAC TRUE CACHE BOOL "enable/disable flac plugin")
SET(USE_VORBIS TRUE CACHE BOOL "enable/disable ogg vorbis plugin")
SET(USE_FFMPEG TRUE CACHE BOOL "enable/disable ffmpeg plugin")
SET(USE_MPC TRUE CACHE BOOL "enable/disable mpc plugin")
SET(USE_SNDFILE TRUE CACHE BOOL "enable/disable sndfile plugin")
SET(USE_WAVPACK TRUE CACHE BOOL "enable/disable wavpack plugin")
SET(USE_MODPLUG TRUE CACHE BOOL "enable/disable modplug plugin")
IF(USE_MAD)
MESSAGE( STATUS "MAD ON")
add_subdirectory(mad)
ELSE(USE_MAD)
MESSAGE( STATUS "MAD OFF")
ENDIF(USE_MAD)
IF(USE_FLAC)
MESSAGE( STATUS "FLAC ON")
add_subdirectory(flac)
ELSE(USE_FLAC)
MESSAGE( STATUS "FLAC OFF")
ENDIF(USE_FLAC)
IF(USE_VORBIS)
MESSAGE( STATUS "VORBIS ON")
add_subdirectory(vorbis)
ELSE(USE_VORBIS)
MESSAGE( STATUS "VORBIS OFF")
ENDIF(USE_VORBIS)
IF(USE_FFMPEG)
MESSAGE( STATUS "FFMPEG ON")
add_subdirectory(ffmpeg)
ELSE(USE_FFMPEG)
MESSAGE( STATUS "FFMPEG OFF")
ENDIF(USE_FFMPEG)
IF(USE_MPC)
MESSAGE( STATUS "MPC ON")
add_subdirectory(mpc)
ELSE(USE_MPC)
MESSAGE( STATUS "MPC OFF")
ENDIF(USE_MPC)
IF(USE_SNDFILE)
MESSAGE( STATUS "SNDFILE ON")
add_subdirectory(sndfile)
ELSE(USE_SNDFILE)
MESSAGE( STATUS "SNDFILE OFF")
ENDIF(USE_SNDFILE)
IF(USE_WAVPACK)
MESSAGE( STATUS "WAVPACK ON")
add_subdirectory(wavpack)
ELSE(USE_WAVPACK)
MESSAGE( STATUS "WAVPACK OFF")
ENDIF(USE_WAVPACK)
IF(USE_MODPLUG)
MESSAGE( STATUS "MODPLUG ON")
add_subdirectory(modplug)
ELSE(USE_MODPLUG)
MESSAGE( STATUS "MODPLUG OFF")
ENDIF(USE_MODPLUG)
|