1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

CMake: Update CMake API reference with option descriptions

This commit is contained in:
reuk 2020-09-02 12:20:35 +01:00
parent 6b1b4cf7f6
commit b26dfad13a
2 changed files with 61 additions and 18 deletions

View file

@ -46,13 +46,13 @@ set_property(GLOBAL PROPERTY JUCE_COPY_PLUGIN_AFTER_BUILD ${JUCE_COPY_PLUGIN_AFT
set(CMAKE_CXX_EXTENSIONS FALSE)
# This option controls whether dummy targets are added to the build which contain all of the source
# files for each JUCE module. If you're planning to use an IDE and want to be able to browse all of
# JUCE's source files, this may be useful. However, it will increase the size of generated IDE
# projects and might slow down configuration a bit. If you enable this, you should probably also add
# `set_property(GLOBAL PROPERTY USE_FOLDERS YES)` to your top level CMakeLists, otherwise the module
# sources will be added directly to the top level of the project, instead of in a nice 'Modules'
# subfolder.
# This option controls whether dummy targets are added to the build, where these targets contain all
# of the source files for each JUCE module. If you're planning to use an IDE and want to be able to
# browse all of JUCE's source files, this may be useful. However, it will increase the size of
# generated IDE projects and might slow down configuration a bit. If you enable this, you should
# probably also add `set_property(GLOBAL PROPERTY USE_FOLDERS YES)` to your top level CMakeLists,
# otherwise the module sources will be added directly to the top level of the project, instead of in
# a nice 'Modules' subfolder.
option(JUCE_ENABLE_MODULE_SOURCE_GROUPS "Show all module sources in IDE projects" OFF)