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 0560982 commit badd2c6Copy full SHA for badd2c6
1 file changed
bindings/python/CMakeLists.txt
@@ -12,6 +12,16 @@ add_subdirectory(../.. libremidi-src)
12
13
find_package(Python 3.8 COMPONENTS Interpreter Development.Module REQUIRED)
14
15
+if(NOT readerwriterqueue_FOUND AND NOT TARGET readerwriterqueue)
16
+ FetchContent_Declare(
17
+ readerwriterqueue
18
+ GIT_REPOSITORY https://github.com/cameron314/readerwriterqueue
19
+ GIT_TAG master
20
+ )
21
+
22
+ FetchContent_MakeAvailable(readerwriterqueue)
23
+endif()
24
25
FetchContent_Declare(
26
nanobind
27
GIT_REPOSITORY https://github.com/wjakob/nanobind
0 commit comments