Flesh out libmikmod

This commit is contained in:
Jesse Talavera-Greenberg 2017-07-14 23:46:03 -04:00
parent af1aa04b56
commit 8d23131813
No known key found for this signature in database
GPG Key ID: 100D3E7396EED2B6
2 changed files with 16 additions and 3 deletions

View File

@ -1,3 +1,4 @@
Source: libmikmod
Version:
Description:
Version: 3.3.11.1
Description: Mikmod is a module player and library supporting many formats, including mod, s3m, it, and xm.
Build-Depends: openal-soft

View File

@ -22,7 +22,19 @@ vcpkg_extract_source_archive(${ARCHIVE})
vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA # Disable this option if project cannot be built with Ninja
OPTIONS -DENABLE_DOC=OFF -DENABLE_THREADS=ON
OPTIONS
-DENABLE_DOC=OFF
-DENABLE_THREADS=ON
-DDISABLE_HQMIXER=OFF
-DENABLE_AF=ON
-DENABLE_AIFF=ON
-DENABLE_NAS=ON
-DENABLE_OPENAL=ON
-DENABLE_PIPE=ON
-DENABLE_RAW=ON
-DENABLE_STDOUT=ON
-DENABLE_WAV=ON
-DOPENAL_INCLUDE_DIR=${CURRENT_INSTALLED_DIR}/include
OPTIONS_RELEASE -DENABLE_SIMD=ON
OPTIONS_DEBUG -DENABLE_SIMD=OFF
)