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
|
#[[
A subdirectory containing module targets
]]
# Include the modules that we'll build
# The list of modules is ordered so that each module occurs after any others
# that it depends on
set( MODULES
mod-mp3
mod-pcm
mod-cl
mod-lof
mod-aup
)
if ( USE_LIBOGG AND USE_LIBVORBIS )
list( APPEND MODULES mod-ogg )
endif()
if ( USE_LIBFLAC )
list( APPEND MODULES mod-flac )
endif()
if ( USE_LIBTWOLAME )
list ( APPEND MODULES mod-mp2 )
endif()
if ( USE_WAVPACK )
list ( APPEND MODULES mod-wavpack )
endif()
if ( USE_LIBMPG123 )
list ( APPEND MODULES mod-mpg123 )
endif()
if ( USE_FFMPEG )
list ( APPEND MODULES mod-ffmpeg )
endif()
if ( USE_LIBOPUS AND USE_OPUSFILE AND USE_LIBOGG )
list ( APPEND MODULES mod-opus )
endif()
audacity_module_subdirectory("${MODULES}")
|