diff options
| author | Robert Schumacher <roschuma@microsoft.com> | 2018-02-13 16:08:04 -0800 |
|---|---|---|
| committer | Robert Schumacher <roschuma@microsoft.com> | 2018-02-13 16:08:04 -0800 |
| commit | 89bd6330dc28a5171a043910922534966bc379b5 (patch) | |
| tree | 5cbb7c548387a9c8d8a67c357cabb88afd51254c | |
| parent | a40559a76d745884d15881ae288fd4b81730dfbb (diff) | |
| download | vcpkg-89bd6330dc28a5171a043910922534966bc379b5.tar.gz vcpkg-89bd6330dc28a5171a043910922534966bc379b5.zip | |
[aubio] Update to handle static FFMPEG
| -rw-r--r-- | ports/aubio/CMakeLists.txt | 7 | ||||
| -rw-r--r-- | ports/aubio/CONTROL | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/ports/aubio/CMakeLists.txt b/ports/aubio/CMakeLists.txt index 50e61339e..a405a48de 100644 --- a/ports/aubio/CMakeLists.txt +++ b/ports/aubio/CMakeLists.txt @@ -37,8 +37,10 @@ find_library(OGG_LIB ogg) find_library(FLAC_LIB flac) find_library(VORBIS_LIB vorbis) find_library(VORBISENC_LIB vorbisenc) +find_package(BZip2 REQUIRED) +find_package(LibLZMA REQUIRED) -include_directories(src ${LIBSNDFILE_H}) +include_directories(src ${LIBSNDFILE_H} ${LIBLZMA_INCLUDE_DIRS}) file(GLOB_RECURSE SOURCES src/*.c) @@ -56,7 +58,10 @@ target_link_libraries(aubio PUBLIC ${AVFILTER_LIB} ${AVFORMAT_LIB} ${SWRESAMPLE_LIB} + BZip2::BZip2 + ${LIBLZMA_LIBRARIES} ws2_32.lib + Secur32.lib ) if(BUILD_TOOLS) diff --git a/ports/aubio/CONTROL b/ports/aubio/CONTROL index 7261afd80..945157c7e 100644 --- a/ports/aubio/CONTROL +++ b/ports/aubio/CONTROL @@ -1,4 +1,4 @@ Source: aubio -Version: 0.4.6 +Version: 0.4.6-1 Description: Aubio is a tool designed for the extraction of annotations from audio signals. Its features include segmenting a sound file before each of its attacks, performing pitch detection, tapping the beat and producing midi streams from live audio. Build-Depends: ffmpeg, libsndfile, libogg, libflac, libvorbis |
