mame/3rdparty/portaudio/cmake/PortAudioConfig.cmake.in
arbee 645bbe989b PortAudio: sync to upstream GitHub revision 0e9b386a1053261340bc8bb32335484ef77b258b [R. Belmont, PortAudio team]
* Tested and works on Windows, macOS, and Linux.
* Fixes compatibility with macOS Ventura and bugfixes WASAPI and WDM-KS on Windows.
2023-04-01 19:03:31 -04:00

19 lines
336 B
CMake

@PACKAGE_INIT@
include("${CMAKE_CURRENT_LIST_DIR}/PortAudioTargets.cmake")
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/modules")
include(CMakeFindDependencyMacro)
find_dependency(Threads)
if("@PA_USE_JACK@")
find_dependency(Regex)
find_dependency(JACK)
endif()
if("@PA_USE_ALSA@")
find_dependency(ALSA)
endif()