21 lines
360 B
CMake
21 lines
360 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)
|
||
|
|
|
||
|
|
# PA_USE_JACK
|
||
|
|
if(@PA_USE_JACK@)
|
||
|
|
find_dependency(Regex)
|
||
|
|
find_dependency(JACK)
|
||
|
|
endif()
|
||
|
|
|
||
|
|
# PA_USE_ALSA
|
||
|
|
if(@PA_USE_ALSA@)
|
||
|
|
find_dependency(ALSA)
|
||
|
|
endif()
|