diff options
author | Brad King <brad.king@kitware.com> | 2010-09-08 15:08:05 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2010-09-08 15:08:05 (GMT) |
commit | 28edb70a9e22314da875a8fa104636461b71d8c6 (patch) | |
tree | d10d341de179233daacfdd253799db9428855e91 /Source/cmGlobalVisualStudio8Generator.cxx | |
parent | 02e3f42a6a4bc2b94befd35c908750c10f612d44 (diff) | |
parent | e6ac0aacf6c3ce17141870e252fda77d994782d3 (diff) | |
download | CMake-28edb70a9e22314da875a8fa104636461b71d8c6.zip CMake-28edb70a9e22314da875a8fa104636461b71d8c6.tar.gz CMake-28edb70a9e22314da875a8fa104636461b71d8c6.tar.bz2 |
Merge topic 'vs-project-groups'
e6ac0aa Add FOLDER target property, for IDEs (#3796)
Diffstat (limited to 'Source/cmGlobalVisualStudio8Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio8Generator.cxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/cmGlobalVisualStudio8Generator.cxx b/Source/cmGlobalVisualStudio8Generator.cxx index 2612a08..c5c9d5c 100644 --- a/Source/cmGlobalVisualStudio8Generator.cxx +++ b/Source/cmGlobalVisualStudio8Generator.cxx @@ -137,6 +137,13 @@ void cmGlobalVisualStudio8Generator::AddCheckTarget() no_working_directory, no_depends, noCommandLines); + // Organize in the "predefined targets" folder: + // + if (this->UseFolderProperty()) + { + tgt->SetProperty("FOLDER", this->GetPredefinedTargetsFolder()); + } + // Create a list of all stamp files for this project. std::vector<std::string> stamps; std::string stampList = cmake::GetCMakeFilesDirectoryPostSlash(); |