mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 04:38:59 +08:00
e9b976af70
* Disable debug logging * Update version of port * Added in debug logging to debug builds only. Still removed from release * Simplified portfile
37 lines
1.2 KiB
CMake
37 lines
1.2 KiB
CMake
vcpkg_from_git(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
URL https://git.assembla.com/portaudio.git
|
|
REF c5d2c51bd6fe354d0ee1119ba932bfebd3ebfacc
|
|
PATCHES
|
|
fix-library-can-not-be-found.patch
|
|
fix-include.patch
|
|
)
|
|
|
|
# NOTE: the ASIO backend will be built automatically if the ASIO-SDK is provided
|
|
# in a sibling folder of the portaudio source in vcpkg/buildtrees/portaudio/src
|
|
vcpkg_configure_cmake(
|
|
SOURCE_PATH ${SOURCE_PATH}
|
|
PREFER_NINJA
|
|
OPTIONS
|
|
-DPA_USE_DS=ON
|
|
-DPA_USE_WASAPI=ON
|
|
-DPA_USE_WDMKS=ON
|
|
-DPA_USE_WMME=ON
|
|
-DPA_LIBNAME_ADD_SUFFIX=OFF
|
|
OPTIONS_DEBUG
|
|
-DPA_ENABLE_DEBUG_OUTPUT:BOOL=ON
|
|
)
|
|
|
|
vcpkg_install_cmake()
|
|
vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/${PORT})
|
|
vcpkg_copy_pdbs()
|
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share)
|
|
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL static)
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/bin ${CURRENT_PACKAGES_DIR}/debug/bin)
|
|
endif()
|
|
|
|
# Handle copyright
|
|
file(INSTALL ${SOURCE_PATH}/LICENSE.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/portaudio RENAME copyright) |