forked from libsdl-org/SDL_mixer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
81 lines (67 loc) · 2.85 KB
/
CMakeLists.txt
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
cmake_minimum_required(VERSION 3.0.0)
project(SDL2_mixer C)
# FIXME: CMAKE SUPPORT IN SDL2_mixer IS VERY INCOMPLETE YET !!!
#
# FIXME: make it able build against system codec libraries, too.
# FIXME: handle library versioning.
# FIXME: test accross different target platforms.
#
# FIXME: missing CMakeLists.txt for MPG123
set(SUPPORT_MP3_MPG123 OFF CACHE BOOL "" FORCE)
option(SUPPORT_WAV "Support loading WAVE music" ON)
option(SUPPORT_FLAC "Support loading FLAC music with libFLAC" OFF)
option(SUPPORT_OGG "Support loading OGG Vorbis music via Tremor" OFF)
option(SUPPORT_MP3_MPG123 "Support loading MP3 music via MPG123" OFF)
option(SUPPORT_MOD_MODPLUG "Support loading MOD music via modplug" OFF)
option(SUPPORT_MID_TIMIDITY "Support loading MIDI music via TiMidity" OFF)
option(BUILD_SHARED_LIBS "Enable shared library" ON)
find_package(SDL2 REQUIRED)
include_directories(${SDL2_INCLUDE_DIRS} ${SDL2_INCLUDE_DIR})
include_directories(include src src/codecs)
add_library(SDL2_mixer)
target_sources(SDL2_mixer PRIVATE
src/effect_position.c src/effects_internal.c src/effect_stereoreverse.c
src/mixer.c src/music.c src/utils.c
src/codecs/load_aiff.c src/codecs/load_voc.c
src/codecs/music_cmd.c
src/codecs/music_wav.c src/codecs/music_flac.c
src/codecs/music_mad.c src/codecs/music_mpg123.c
src/codecs/music_ogg.c src/codecs/music_opus.c
src/codecs/music_mikmod.c src/codecs/music_modplug.c
src/codecs/music_xmp.c
src/codecs/music_fluidsynth.c src/codecs/music_timidity.c
src/codecs/music_nativemidi.c)
if (SUPPORT_WAV)
add_definitions(-DMUSIC_WAV)
endif()
if (SUPPORT_FLAC)
add_definitions(-DMUSIC_FLAC)
add_subdirectory(external/flac-1.3.3)
include_directories(external/flac-1.3.3/include)
target_link_libraries(SDL2_mixer PRIVATE FLAC)
endif()
if (SUPPORT_OGG)
add_definitions(-DMUSIC_OGG -DOGG_USE_TREMOR -DOGG_HEADER=<ivorbisfile.h>)
add_subdirectory(external/libogg-1.3.2)
add_subdirectory(external/libvorbisidec-1.2.1)
include_directories(external/libvorbisidec-1.2.1)
target_link_libraries(SDL2_mixer PRIVATE vorbisidec ogg)
endif()
if (SUPPORT_MP3_MPG123)
add_definitions(-DMUSIC_MP3_MPG123)
add_subdirectory(external/mpg123-1.25.13)
target_link_libraries(SDL2_mixer PRIVATE mpg123)
endif()
if (SUPPORT_MOD_MODPLUG)
add_definitions(-DMUSIC_MOD_MODPLUG -DMODPLUG_HEADER=<modplug.h>)
add_subdirectory(external/libmodplug-0.8.9.0)
include_directories(external/libmodplug-0.8.9.0/src)
target_link_libraries(SDL2_mixer PRIVATE modplug)
endif()
if (SUPPORT_MID_TIMIDITY)
add_definitions(-DMUSIC_MID_TIMIDITY)
add_subdirectory(src/codecs/timidity)
target_link_libraries(SDL2_mixer PRIVATE timidity)
endif()
target_include_directories(SDL2_mixer PUBLIC include)
target_link_libraries(SDL2_mixer PRIVATE ${SDL2_LIBRARIES} ${SDL2_LIBRARY})