commit ca20f787bc7bcaf0d1bb3d5f57700ee8151d1c9a
parent ccb149fa3aaadc29b29ab6731a8ced6cc065f541
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date: Thu, 26 Sep 2024 21:17:54 +0200
use EXCLUDE_FROM_ALL on Juce to prevent that a "cmake --install" installs Juce on the target system
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/source/CMakeLists.txt b/source/CMakeLists.txt
@@ -29,7 +29,7 @@ include(findvst2.cmake)
set_property(GLOBAL PROPERTY USE_FOLDERS YES)
if(${CMAKE_PROJECT_NAME}_BUILD_JUCEPLUGIN)
set(JUCE_ENABLE_MODULE_SOURCE_GROUPS ON CACHE BOOL "" FORCE)
- add_subdirectory(JUCE)
+ add_subdirectory(JUCE EXCLUDE_FROM_ALL)
if(${CMAKE_PROJECT_NAME}_BUILD_JUCEPLUGIN_CLAP)
add_subdirectory(clap-juce-extensions)
endif()