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 dbb2406 commit 633e474Copy full SHA for 633e474
bindings/python/CMakeLists.txt
@@ -3,7 +3,11 @@ project(pylibremidi)
3
4
set(LIBREMIDI_HEADER_ONLY 1)
5
set(LIBREMIDI_NEEDS_READERWRITERQUEUE 1)
6
+set(CMAKE_FIND_PACKAGE_TARGETS_GLOBAL 1)
7
add_subdirectory(../.. libremidi-src)
8
+if(NOT TARGET readerwriterqueue)
9
+ message(FATAL_ERROR "readerwriterqueue not found ?")
10
+endif()
11
find_package(Python 3.8 COMPONENTS Interpreter Development.Module REQUIRED)
12
13
FetchContent_Declare(
0 commit comments