File: CMakeLists.txt

package info (click to toggle)
k3b 25.12.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 55,840 kB
  • sloc: cpp: 99,202; xml: 372; sh: 84; makefile: 10
file content (27 lines) | stat: -rw-r--r-- 482 bytes parent folder | download | duplicates (5)
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
if(BUILD_WAVE_DECODER_PLUGIN)
    add_subdirectory( wave )
endif()

if(BUILD_OGGVORBIS_DECODER_PLUGIN)
    add_subdirectory(ogg)
endif()

if(BUILD_FFMPEG_DECODER_PLUGIN)
    add_subdirectory(ffmpeg)
endif()

if(BUILD_FLAC_DECODER_PLUGIN)
    add_subdirectory(flac)
endif()

if(BUILD_MAD_DECODER_PLUGIN)
    add_subdirectory(mp3)
endif()

if(BUILD_MUSE_DECODER_PLUGIN)
    add_subdirectory(musepack)
endif()

if(BUILD_SNDFILE_DECODER_PLUGIN)
    add_subdirectory(libsndfile)
endif()