mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-11 17:49:02 +08:00
785cbdb8ba
* [sdl2-mixer] Bump to version 2.6.3 * [sdl2-mixer] Fix findFluidSynth on windows-static. * [sdl2-mixer] vcpkg_minimum_required is not needed * [sdl2-mixer] Control SDL2MIXER_MOD with libmodplug If SDL2MIXER_MOD is left on when no backend is availble, CMake issues a warning. * [sdl2-mixer] Turn off SDL2MIXER_DEPS_SHARED Similar issue to #28137. SDL2MIXER_OPUS_SHARED and SDL2MIXER_VORBIS_VORBISFILE_SHARED need to be manually turned off as they are unconditionally turned on. * [sdl2-mixer] Set the correct vorbis backend. Even when SDL2MIXER_VORBIS_VORBISFILE was set to ON, stb_vorbis would be used as the default backend. * [sdl2-mixer] Use vcpkg_install_copyright * [sdl2-mixer] Ensure flac and mpg123 are selected. Turn off header-only libraries when the features are selected. * [sdl2-mixer] Patch missing call to find_dependency This is fixed upstream but has not been included in the 2.6.x branch. * [sdl2-mixer] Fix dependency linking. - The FLAC target is an upstream patch. - VCPKG's opusfile port is static-only, meaning Opus and Ogg needs to be linked explicitly. * [sdl2-mixer] Update baseline. --------- Co-authored-by: MonicaLiu <v-liumonica@microsoft.com>
61 lines
1.8 KiB
CMake
61 lines
1.8 KiB
CMake
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO libsdl-org/SDL_mixer
|
|
REF "release-${VERSION}"
|
|
SHA512 74c2b449e8a9928679d42e25bd7a5967e41fe9d51732f26197c6bbe1db9170be784125b7f268476050017f3dc970497e09a0409d50731026a18355375d0369ce
|
|
PATCHES
|
|
fix-pkg-prefix.patch
|
|
fix-pkgconfig.patch
|
|
fix-windows-static-findfluidsynth.patch
|
|
fix-missing-find-opusfile.patch
|
|
fix-deps-link.patch
|
|
)
|
|
|
|
vcpkg_check_features(
|
|
OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
|
FEATURES
|
|
fluidsynth SDL2MIXER_MIDI_FLUIDSYNTH
|
|
libflac SDL2MIXER_FLAC_LIBFLAC
|
|
libmodplug SDL2MIXER_MOD
|
|
libmodplug SDL2MIXER_MOD_MODPLUG
|
|
libvorbis SDL2MIXER_VORBIS_VORBISFILE
|
|
mpg123 SDL2MIXER_MP3_MPG123
|
|
nativemidi SDL2MIXER_MIDI_NATIVE
|
|
opusfile SDL2MIXER_OPUS
|
|
INVERTED_FEATURES
|
|
libflac SDL2MIXER_FLAC_DRFLAC
|
|
mpg123 SDL2MIXER_MP3_DRMP3
|
|
)
|
|
|
|
if(FEATURE_OPTIONS MATCHES "SDL2MIXER_VORBIS_VORBISFILE=ON")
|
|
set(VORBIS_BACKEND "VORBISFILE")
|
|
else()
|
|
set(VORBIS_BACKEND "STB")
|
|
endif()
|
|
|
|
vcpkg_cmake_configure(
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
|
OPTIONS
|
|
${FEATURE_OPTIONS}
|
|
-DSDL2MIXER_VENDORED=OFF
|
|
-DSDL2MIXER_SAMPLES=OFF
|
|
-DSDL2MIXER_DEPS_SHARED=OFF
|
|
-DSDL2MIXER_OPUS_SHARED=OFF
|
|
-DSDL2MIXER_VORBIS_VORBISFILE_SHARED=OFF
|
|
-DSDL2MIXER_VORBIS=${VORBIS_BACKEND}
|
|
)
|
|
|
|
vcpkg_cmake_install()
|
|
vcpkg_copy_pdbs()
|
|
vcpkg_cmake_config_fixup(
|
|
PACKAGE_NAME "SDL2_mixer"
|
|
CONFIG_PATH "lib/cmake/SDL2_mixer"
|
|
)
|
|
vcpkg_fixup_pkgconfig()
|
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
|
|
|
|
file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")
|
|
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE.txt")
|