15 lines
614 B
CMake
15 lines
614 B
CMake
# ###################################### RtAudio
|
|
if(LASP_HAS_PORTAUDIO)
|
|
message("Building with Portaudio backend")
|
|
if(WIN32)
|
|
else()
|
|
set(PA_USE_ALSA TRUE CACHE BOOL "Build PortAudio with ALSA backend")
|
|
set(PA_USE_JACK TRUE CACHE BOOL "Build PortAudio with Jack backend")
|
|
# set(PA_ALSA_DYNAMIC FALSE CACHE BOOL "Build static library of ALSA")
|
|
set(PA_BUILD_SHARED_LIBS FALSE CACHE BOOL "Build static library")
|
|
endif()
|
|
add_subdirectory(third_party/portaudio)
|
|
include_directories(third_party/portaudio/include)
|
|
link_directories(third_party/portaudio)
|
|
endif()
|