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 /Source/cmTarget.cxx | |
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 'Source/cmTarget.cxx')
-rw-r--r-- | Source/cmTarget.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index 6137223..b88d517f 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -275,6 +275,7 @@ cmTarget::cmTarget(std::string const& name, cmStateEnums::TargetType type, this->SetPropertyDefault("CUDA_SEPARABLE_COMPILATION", nullptr); this->SetPropertyDefault("LINK_SEARCH_START_STATIC", nullptr); this->SetPropertyDefault("LINK_SEARCH_END_STATIC", nullptr); + this->SetPropertyDefault("FOLDER", nullptr); } // Collect the set of configuration types. |