diff options
author | Marc B <cmake.ichbinsauch@recursor.net> | 2018-03-27 22:53:18 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-03-29 17:19:13 (GMT) |
commit | df535ad846f5a25cd0795ce099a8604149bbf748 (patch) | |
tree | 400c5b96c50f643fae4bc4ccce96a39e48671c47 /Help/variable | |
parent | 6792c7787aedc0fb2a32b6ca563917f7447f2e80 (diff) | |
download | CMake-df535ad846f5a25cd0795ce099a8604149bbf748.zip CMake-df535ad846f5a25cd0795ce099a8604149bbf748.tar.gz CMake-df535ad846f5a25cd0795ce099a8604149bbf748.tar.bz2 |
Add CMAKE_FOLDER variable to initialize FOLDER target property
This can be used for example to organize all following targets into one
Visual Studio folder:
set(CMAKE_FOLDER Libraries)
add_subdirectory(libA)
add_subdirectory(libB)
set(CMAKE_FOLDER Executables)
add_subdirectory(progA)
Another possibility is using the current directory name for all
following targets in subdirectories:
get_filename_component(dirname "${CMAKE_CURRENT_SOURCE_DIR}" NAME)
string(APPEND CMAKE_FOLDER "/${dirname}")
Diffstat (limited to 'Help/variable')
-rw-r--r-- | Help/variable/CMAKE_FOLDER.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Help/variable/CMAKE_FOLDER.rst b/Help/variable/CMAKE_FOLDER.rst new file mode 100644 index 0000000..50a2b88 --- /dev/null +++ b/Help/variable/CMAKE_FOLDER.rst @@ -0,0 +1,7 @@ +CMAKE_FOLDER +------------ + +Set the folder name. Use to organize targets in an IDE. + +This variable is used to initialize the :prop_tgt:`FOLDER` property on all the +targets. See that target property for additional information. |