diff options
| author | Stephen Kyne <xskyne@gmail.com> | 2020-02-04 23:47:15 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-04 14:47:15 -0800 |
| commit | e9b976af70cb51e6510d76994e548de6c83c9de0 (patch) | |
| tree | f89a038565951489c7a53f5ba0d902d22181e3ac | |
| parent | d09f4faf526b33a8d938e653589ec1d726ef146f (diff) | |
| download | vcpkg-e9b976af70cb51e6510d76994e548de6c83c9de0.tar.gz vcpkg-e9b976af70cb51e6510d76994e548de6c83c9de0.zip | |
[Portaudio] Disable debug logging by default (#9877)
* Disable debug logging
* Update version of port
* Added in debug logging to debug builds only. Still removed from release
* Simplified portfile
| -rw-r--r-- | ports/portaudio/CONTROL | 2 | ||||
| -rw-r--r-- | ports/portaudio/portfile.cmake | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/ports/portaudio/CONTROL b/ports/portaudio/CONTROL index c6a562625..e93f1a6c3 100644 --- a/ports/portaudio/CONTROL +++ b/ports/portaudio/CONTROL @@ -1,4 +1,4 @@ Source: portaudio
-Version: 2019-11-5
+Version: 2020-02-02
Homepage: https://app.assembla.com/spaces/portaudio/wiki
Description: PortAudio Portable Cross-platform Audio I/O API PortAudio is a free, cross-platform, open-source, audio I/O library. It lets you write simple audio programs in 'C' or C++ that will compile and run on many platforms including Windows, Macintosh OS X, and Unix (OSS/ALSA). It is intended to promote the exchange of audio software between developers on different platforms. Many applications use PortAudio for Audio I/O.
\ No newline at end of file diff --git a/ports/portaudio/portfile.cmake b/ports/portaudio/portfile.cmake index 329e75b11..38c2bdaba 100644 --- a/ports/portaudio/portfile.cmake +++ b/ports/portaudio/portfile.cmake @@ -13,12 +13,13 @@ vcpkg_configure_cmake( SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA
OPTIONS
- -DPA_USE_DS=ON
+ -DPA_USE_DS=ON
-DPA_USE_WASAPI=ON
-DPA_USE_WDMKS=ON
-DPA_USE_WMME=ON
- -DPA_ENABLE_DEBUG_OUTPUT:BOOL=ON
-DPA_LIBNAME_ADD_SUFFIX=OFF
+ OPTIONS_DEBUG
+ -DPA_ENABLE_DEBUG_OUTPUT:BOOL=ON
)
vcpkg_install_cmake()
|
