From 372f12de954abcb850d1f80c642a06b8ea66b59f Mon Sep 17 00:00:00 2001 From: WarmUpTill Date: Fri, 5 May 2023 23:57:08 +0200 Subject: [PATCH] Fix libremidi build files being picked up by the Windows installer --- src/macro-external/midi/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/macro-external/midi/CMakeLists.txt b/src/macro-external/midi/CMakeLists.txt index d2609fda..629059d8 100644 --- a/src/macro-external/midi/CMakeLists.txt +++ b/src/macro-external/midi/CMakeLists.txt @@ -10,7 +10,7 @@ if(NOT EXISTS "${LIBREMIDI_DIR}") "MIDI support will be disabled!") return() endif() -add_subdirectory("${LIBREMIDI_DIR}" "${LIBREMIDI_DIR}/build") +add_subdirectory("${LIBREMIDI_DIR}" "${LIBREMIDI_DIR}/build" EXCLUDE_FROM_ALL) # --- End of section ---