summaryrefslogtreecommitdiffstats
path: root/src/cmake/FindSDL_sound.cmake
blob: 9e8fa0b3858d5469c72bc342ca86a7de2bc1eed3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# This file is part of MXE.
# See index.html for further information.

if(NOT PKG_CONFIG_FOUND)
  find_package(PkgConfig REQUIRED)
endif()

pkg_check_modules(SDL_SOUND SDL_sound)

#compatiblity
set(SDL_SOUND_VERSION_STRING ${SDL_SOUND_VERSION})
set(SDL_SOUND_LIBRARIES ${SDL_SOUND_EXTRAS};${SDL_SOUND_LIBRARIES})

# for backward compatiblity
set(SDL_SOUND_LIBRARY ${SDL_SOUND_LIBRARIES})