From ff24f4acd3091831f60e91e3c9c5ffc3d75e8c8d Mon Sep 17 00:00:00 2001 From: reuk Date: Mon, 9 Aug 2021 11:21:49 +0100 Subject: [PATCH] CMake: Fix module source groups when not using modules-only mode --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 61267ca359..bd80a81d2f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -50,7 +50,7 @@ include(extras/Build/CMake/JUCEModuleSupport.cmake) cmake_dependent_option(JUCE_ENABLE_MODULE_SOURCE_GROUPS "Show all module sources in IDE projects" OFF - "JUCE_MODULES_ONLY" OFF) + "NOT JUCE_MODULES_ONLY" OFF) add_subdirectory(modules)