avioflow 0.7.3

High-performance audio decoding, encoding and resampling powered by FFmpeg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@PACKAGE_INIT@

include(CMakeFindDependencyMacro)

set(_avioflow_ffmpeg_dir "${PACKAGE_PREFIX_DIR}/lib/cmake/FFmpeg")
if(EXISTS "${_avioflow_ffmpeg_dir}/FFmpegConfig.cmake")
    find_dependency(FFmpeg CONFIG REQUIRED
        PATHS "${PACKAGE_PREFIX_DIR}"
        NO_DEFAULT_PATH
    )
else()
    find_dependency(FFmpeg CONFIG REQUIRED)
endif()
unset(_avioflow_ffmpeg_dir)

include("${CMAKE_CURRENT_LIST_DIR}/avioflowTargets.cmake")

check_required_components(avioflow)