blob: 420ec61263afe8933e8c077db1ad6a9df5139bb8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
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)
|