aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Effect/CMakeLists.txt
blob: 85a8577ec08ac3eb8da40d3cc88e4b88637c80b0 (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
SET(USE_SRC TRUE CACHE BOOL "enable/disable SRC plugin")
SET(USE_BS2B TRUE CACHE BOOL "enable/disable bs2b plugin")
SET(USE_LADSPA TRUE CACHE BOOL "enable/disable ladspa plugin")
SET(USE_CROSSFADE TRUE CACHE BOOL "enable/disable crossfade plugin")
SET(USE_STEREO TRUE CACHE BOOL "enable/disable extra stereo plugin")

IF(USE_SRC)
add_subdirectory(srconverter)
ENDIF(USE_SRC)

IF(USE_BS2B)
add_subdirectory(bs2b)
ENDIF(USE_BS2B)

IF(USE_LADSPA)
#add_subdirectory(ladspa)
ENDIF(USE_LADSPA)

IF(USE_CROSSFADE)
#add_subdirectory(crossfade)
ENDIF(USE_CROSSFADE)

IF(USE_STEREO)
#add_subdirectory(stereo)
ENDIF(USE_STEREO)