aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Input/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/Input/CMakeLists.txt')
-rw-r--r--src/plugins/Input/CMakeLists.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/plugins/Input/CMakeLists.txt b/src/plugins/Input/CMakeLists.txt
index 8114bc092..ef6db0a97 100644
--- a/src/plugins/Input/CMakeLists.txt
+++ b/src/plugins/Input/CMakeLists.txt
@@ -5,6 +5,7 @@ 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")
IF(USE_MAD)
MESSAGE( STATUS "MAD ON")
@@ -47,3 +48,10 @@ 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)