We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67714f3 commit 667e7acCopy full SHA for 667e7ac
CMakeLists.txt
@@ -22,4 +22,12 @@ if (BUILD_TESTS)
22
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/tests)
23
else()
24
# add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/tests EXCLUDE_FROM_ALL)
25
+ # Build with Portaudio
26
+ FetchContent_Declare(portaudio GIT_REPOSITORY "https://github.com/PortAudio/portaudio.git" GIT_TAG master )
27
+ FetchContent_GetProperties(portaudio)
28
+ if(NOT portaudio_POPULATED)
29
+ FetchContent_Populate(portaudio)
30
+ add_subdirectory(${portaudio_SOURCE_DIR})
31
+ endif()
32
+
33
endif()
0 commit comments