1 # Locates the SDL_sound library
3 # This module depends on SDL being found and
4 # must be called AFTER FindSDL.cmake is called.
7 # SDL_SOUND_INCLUDE_DIR, where to find SDL_sound.h
8 # SDL_SOUND_FOUND, if false, do not try to link to SDL
9 # SDL_SOUND_LIBRARIES, this contains the list of libraries that you need
10 # to link against. This is a read-only variable and is marked INTERNAL.
11 # SDL_SOUND_EXTRAS, this is an optional variable for you to add your own
12 # flags to SDL_SOUND_LIBRARIES. This is prepended to SDL_SOUND_LIBRARIES.
13 # This is available mostly for cases this module failed to anticipate for
14 # and you must add additional flags. This is marked as ADVANCED.
17 # This module also defines (but you shouldn't need to use directly)
18 # SDL_SOUND_LIBRARY, the name of just the SDL_sound library you would link
19 # against. Use SDL_SOUND_LIBRARIES for you link instructions and not this one.
20 # And might define the following as needed
29 # Typically, you should not use these variables directly, and you should use
30 # SDL_SOUND_LIBRARIES which contains SDL_SOUND_LIBRARY and the other audio libraries
31 # (if needed) to successfully compile on your system .
33 # Created by Eric Wing.
34 # This module is a bit more complicated than the other FindSDL* family modules.
35 # The reason is that SDL_sound can be compiled in a large variety of different ways
36 # which are independent of platform. SDL_sound may dynamically link against other 3rd
37 # party libraries to get additional codec support, such as Ogg Vorbis, SMPEG, ModPlug,
38 # MikMod, FLAC, Speex, and potentially others.
39 # Under some circumstances which I don't fully understand,
40 # there seems to be a requirement
41 # that dependent libraries of libraries you use must also be explicitly
42 # linked against in order to successfully compile. SDL_sound does not currently
43 # have any system in place to know how it was compiled.
44 # So this CMake module does the hard work in trying to discover which 3rd party
45 # libraries are required for building (if any).
46 # This module uses a brute force approach to create a test program that uses SDL_sound,
47 # and then tries to build it. If the build fails, it parses the error output for
48 # known symbol names to figure out which libraries are needed.
50 # Responds to the $SDLDIR and $SDLSOUNDDIR environmental variable that would
51 # correspond to the ./configure --prefix=$SDLDIR used in building SDL.
53 # On OSX, this will prefer the Framework version (if found) over others.
54 # People will have to manually change the cache values of
55 # SDL_LIBRARY to override this selectionor set the CMake environment
56 # CMAKE_INCLUDE_PATH to modify the search paths.
60 SET(SDL_SOUND_EXTRAS "" CACHE STRING "SDL_sound extra flags")
61 MARK_AS_ADVANCED(SDL_SOUND_EXTRAS)
64 FIND_PATH(SDL_SOUND_INCLUDE_DIR SDL_sound.h
65 $ENV{SDLSOUNDDIR}/include
71 FIND_PATH(SDL_SOUND_INCLUDE_DIR SDL_sound.h
74 FIND_PATH(SDL_SOUND_INCLUDE_DIR SDL_sound.h
75 /usr/local/include/SDL
77 /usr/local/include/SDL12
78 /usr/local/include/SDL11 # FreeBSD ports
83 /sw/include/SDL # Fink
85 /opt/local/include/SDL # DarwinPorts
87 /opt/csw/include/SDL # Blastwave
93 FIND_LIBRARY(SDL_SOUND_LIBRARY
108 SET(SDL_SOUND_FOUND "NO")
109 IF(SDL_FOUND AND SDL_SOUND_INCLUDE_DIR AND SDL_SOUND_LIBRARY)
111 # CMake is giving me problems using TRY_COMPILE with the CMAKE_FLAGS
112 # for the :STRING syntax if I have multiple values contained in a
113 # single variable. This is a problem for the SDL_LIBRARY variable
114 # because it does just that. When I feed this variable to the command,
115 # only the first value gets the appropriate modifier (e.g. -I) and
116 # the rest get dropped.
117 # To get multiple single variables to work, I must separate them with a "\;"
118 # I could go back and modify the FindSDL.cmake module, but that's kind of painful.
119 # The solution would be to try something like:
120 # SET(SDL_TRY_COMPILE_LIBRARY_LIST "${SDL_TRY_COMPILE_LIBRARY_LIST}\;${CMAKE_THREAD_LIBS_INIT}")
121 # Instead, it was suggested on the mailing list to write a temporary CMakeLists.txt
122 # with a temporary test project and invoke that with TRY_COMPILE.
123 # See message thread "Figuring out dependencies for a library in order to build"
127 # ${CMAKE_BINARY_DIR}
128 # ${PROJECT_SOURCE_DIR}/DetermineSoundLibs.c
130 # -DINCLUDE_DIRECTORIES:STRING=${SDL_INCLUDE_DIR}\;${SDL_SOUND_INCLUDE_DIR}
131 # -DLINK_LIBRARIES:STRING=${SDL_SOUND_LIBRARY}\;${SDL_LIBRARY}
132 # OUTPUT_VARIABLE MY_OUTPUT
135 # To minimize external dependencies, create a sdlsound test program
136 # which will be used to figure out if additional link dependencies are
137 # required for the link phase.
138 FILE(WRITE ${PROJECT_BINARY_DIR}/CMakeTmp/DetermineSoundLibs.c
139 "#include \"SDL_sound.h\"
141 int main(int argc, char* argv[])
143 Sound_AudioInfo desired;
144 Sound_Sample* sample;
149 /* This doesn't actually have to work, but Init() is a no-op
150 * for some of the decoders, so this should force more symbols
153 sample = Sound_NewSampleFromFile(argv[1], &desired, 4096);
162 # TARGET_LINK_LIBRARIES(DetermineSoundLibs "${SDL_SOUND_LIBRARY} ${SDL_LIBRARY})
163 # causes problems when SDL_LIBRARY looks like
164 # /Library/Frameworks/SDL.framework;-framework Cocoa
165 # The ;-framework Cocoa seems to be confusing CMake once the OS X
166 # framework support was added. I was told that breaking up the list
167 # would fix the problem.
169 FOREACH(lib ${SDL_SOUND_LIBRARY} ${SDL_LIBRARY})
170 SET(TMP_TRY_LIBS "${TMP_TRY_LIBS} \"${lib}\"")
173 # MESSAGE("TMP_TRY_LIBS ${TMP_TRY_LIBS}")
175 # Write the CMakeLists.txt and test project
176 # Weird, this is still sketchy. If I don't quote the variables
177 # in the TARGET_LINK_LIBRARIES, I seem to loose everything
178 # in the SDL_LIBRARY string after the "-framework".
179 # But if I quote the stuff in INCLUDE_DIRECTORIES, it doesn't work.
180 FILE(WRITE ${PROJECT_BINARY_DIR}/CMakeTmp/CMakeLists.txt
181 "PROJECT(DetermineSoundLibs)
182 INCLUDE_DIRECTORIES(${SDL_INCLUDE_DIR} ${SDL_SOUND_INCLUDE_DIR})
183 ADD_EXECUTABLE(DetermineSoundLibs DetermineSoundLibs.c)
184 TARGET_LINK_LIBRARIES(DetermineSoundLibs ${TMP_TRY_LIBS})"
189 ${PROJECT_BINARY_DIR}/CMakeTmp
190 ${PROJECT_BINARY_DIR}/CMakeTmp
192 OUTPUT_VARIABLE MY_OUTPUT
195 # MESSAGE("${MY_RESULT}")
196 # MESSAGE(${MY_OUTPUT})
200 # I expect that MPGLIB, VOC, WAV, AIFF, and SHN are compiled in statically.
201 # I think Timidity is also compiled in statically.
202 # I've never had to explcitly link against Quicktime, so I'll skip that for now.
204 SET(SDL_SOUND_LIBRARIES_TMP ${SDL_SOUND_LIBRARY})
207 IF("${MY_OUTPUT}" MATCHES "MikMod_")
208 FIND_LIBRARY(MIKMOD_LIBRARY
209 NAMES libmikmod-coreaudio mikmod
213 $ENV{SDLSOUNDDIR}/lib
225 SET(SDL_SOUND_LIBRARIES_TMP ${SDL_SOUND_LIBRARIES_TMP} ${MIKMOD_LIBRARY})
226 ENDIF(MIKMOD_LIBRARY)
227 ENDIF("${MY_OUTPUT}" MATCHES "MikMod_")
230 IF("${MY_OUTPUT}" MATCHES "MODPLUG_")
231 FIND_LIBRARY(MODPLUG_LIBRARY
236 $ENV{SDLSOUNDDIR}/lib
248 SET(SDL_SOUND_LIBRARIES_TMP ${SDL_SOUND_LIBRARIES_TMP} ${MODPLUG_LIBRARY})
249 ENDIF(MODPLUG_LIBRARY)
250 ENDIF("${MY_OUTPUT}" MATCHES "MODPLUG_")
253 # Find Ogg and Vorbis
254 IF("${MY_OUTPUT}" MATCHES "ov_")
255 FIND_LIBRARY(VORBIS_LIBRARY
256 NAMES vorbis Vorbis VORBIS
262 $ENV{SDLSOUNDDIR}/lib
273 SET(TEMP_SDLSOUND_FIND_VORBIS_FRAMEWORK "" CACHE INTERNAL "")
275 SET(SDL_SOUND_LIBRARIES_TMP ${SDL_SOUND_LIBRARIES_TMP} ${VORBIS_LIBRARY})
276 ENDIF(VORBIS_LIBRARY)
278 FIND_LIBRARY(OGG_LIBRARY
285 $ENV{SDLSOUNDDIR}/lib
297 SET(SDL_SOUND_LIBRARIES_TMP ${SDL_SOUND_LIBRARIES_TMP} ${OGG_LIBRARY})
299 ENDIF("${MY_OUTPUT}" MATCHES "ov_")
303 IF("${MY_OUTPUT}" MATCHES "SMPEG_")
304 FIND_LIBRARY(SMPEG_LIBRARY
305 NAMES smpeg SMPEG Smpeg SMpeg
309 $ENV{SDLSOUNDDIR}/lib
321 SET(SDL_SOUND_LIBRARIES_TMP ${SDL_SOUND_LIBRARIES_TMP} ${SMPEG_LIBRARY})
323 ENDIF("${MY_OUTPUT}" MATCHES "SMPEG_")
327 IF("${MY_OUTPUT}" MATCHES "FLAC_")
328 FIND_LIBRARY(FLAC_LIBRARY
333 $ENV{SDLSOUNDDIR}/lib
345 SET(SDL_SOUND_LIBRARIES_TMP ${SDL_SOUND_LIBRARIES_TMP} ${FLAC_LIBRARY})
347 ENDIF("${MY_OUTPUT}" MATCHES "FLAC_")
350 # Hmmm...Speex seems to depend on Ogg. This might be a problem if
351 # the TRY_COMPILE attempt gets blocked at SPEEX before it can pull
352 # in the Ogg symbols. I'm not sure if I should duplicate the ogg stuff
353 # above for here or if two ogg entries will screw up things.
354 IF("${MY_OUTPUT}" MATCHES "speex_")
355 FIND_LIBRARY(SPEEX_LIBRARY
360 $ENV{SDLSOUNDDIR}/lib
372 SET(SDL_SOUND_LIBRARIES_TMP ${SDL_SOUND_LIBRARIES_TMP} ${SPEEX_LIBRARY})
375 # Find OGG (needed for Speex)
376 # We might have already found Ogg for Vorbis, so skip it if so.
378 FIND_LIBRARY(OGG_LIBRARY
387 $ENV{SDLSOUNDDIR}/lib
399 SET(SDL_SOUND_LIBRARIES_TMP ${SDL_SOUND_LIBRARIES_TMP} ${OGG_LIBRARY})
401 ENDIF(NOT OGG_LIBRARY)
402 ENDIF("${MY_OUTPUT}" MATCHES "speex_")
405 SET(SDL_SOUND_LIBRARIES "${SDL_SOUND_EXTRAS} ${SDL_SOUND_LIBRARY}" CACHE INTERNAL "SDL_sound and dependent libraries")
408 SET(SDL_SOUND_LIBRARIES "${SDL_SOUND_EXTRAS} ${SDL_SOUND_LIBRARIES_TMP}" CACHE INTERNAL "SDL_sound and dependent libraries")
409 SET(SDL_SOUND_FOUND "YES")
410 ENDIF(SDL_FOUND AND SDL_SOUND_INCLUDE_DIR AND SDL_SOUND_LIBRARY)
412 # MESSAGE("SDL_SOUND_LIBRARIES is ${SDL_SOUND_LIBRARIES}")