mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-27 10:21:07 +08:00
[aubio] Update to handle static FFMPEG
This commit is contained in:
parent
a40559a76d
commit
89bd6330dc
@ -37,8 +37,10 @@ find_library(OGG_LIB ogg)
|
|||||||
find_library(FLAC_LIB flac)
|
find_library(FLAC_LIB flac)
|
||||||
find_library(VORBIS_LIB vorbis)
|
find_library(VORBIS_LIB vorbis)
|
||||||
find_library(VORBISENC_LIB vorbisenc)
|
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)
|
file(GLOB_RECURSE SOURCES src/*.c)
|
||||||
|
|
||||||
@ -56,7 +58,10 @@ target_link_libraries(aubio PUBLIC
|
|||||||
${AVFILTER_LIB}
|
${AVFILTER_LIB}
|
||||||
${AVFORMAT_LIB}
|
${AVFORMAT_LIB}
|
||||||
${SWRESAMPLE_LIB}
|
${SWRESAMPLE_LIB}
|
||||||
|
BZip2::BZip2
|
||||||
|
${LIBLZMA_LIBRARIES}
|
||||||
ws2_32.lib
|
ws2_32.lib
|
||||||
|
Secur32.lib
|
||||||
)
|
)
|
||||||
|
|
||||||
if(BUILD_TOOLS)
|
if(BUILD_TOOLS)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
Source: aubio
|
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.
|
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
|
Build-Depends: ffmpeg, libsndfile, libogg, libflac, libvorbis
|
||||||
|
Loading…
x
Reference in New Issue
Block a user