mirror of
https://github.com/holub/mame
synced 2025-05-31 10:01:51 +03:00

* Tested and works on Windows, macOS, and Linux. * Fixes compatibility with macOS Ventura and bugfixes WASAPI and WDM-KS on Windows.
19 lines
336 B
CMake
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()
|