diff options
author | Brad King <brad.king@kitware.com> | 2006-02-03 16:36:11 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-02-03 16:36:11 (GMT) |
commit | afa83678854b7af547c9f0033ac5f7446a163447 (patch) | |
tree | 6696c212b3243e536816708262b800ed188e5d22 /Source/cmGlobalVisualStudio6Generator.cxx | |
parent | 0f5aced5029203a7a833e81f2f36dafcd3c56d99 (diff) | |
download | CMake-afa83678854b7af547c9f0033ac5f7446a163447.zip CMake-afa83678854b7af547c9f0033ac5f7446a163447.tar.gz CMake-afa83678854b7af547c9f0033ac5f7446a163447.tar.bz2 |
BUG: Fixed cmTarget::GetFullPath to not append the configuration name when only one configuration is built. It now asks the generator what subdirectory if any to use for a given configuration name.
Diffstat (limited to 'Source/cmGlobalVisualStudio6Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio6Generator.cxx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Source/cmGlobalVisualStudio6Generator.cxx b/Source/cmGlobalVisualStudio6Generator.cxx index 11dbff2..5781bff 100644 --- a/Source/cmGlobalVisualStudio6Generator.cxx +++ b/Source/cmGlobalVisualStudio6Generator.cxx @@ -486,3 +486,15 @@ void cmGlobalVisualStudio6Generator::GetDocumentation(cmDocumentationEntry& entr entry.brief = "Generates Visual Studio 6 project files."; entry.full = ""; } + +//---------------------------------------------------------------------------- +void +cmGlobalVisualStudio6Generator +::AppendDirectoryForConfig(const char* config, std::string& dir) +{ + if(config) + { + dir += "/"; + dir += config; + } +} |