summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2005-12-13 20:13:17 (GMT)
committerKen Martin <ken.martin@kitware.com>2005-12-13 20:13:17 (GMT)
commit0b69b892edd2c833fde53891f30d376ff1d16734 (patch)
tree6fa5216965e3fb8ae2b3dae6eb5e8ffa649ae14e /Source
parentfa3120a4a529c5a10a0f369d7abc5d4115b6f9b6 (diff)
downloadCMake-0b69b892edd2c833fde53891f30d376ff1d16734.zip
CMake-0b69b892edd2c833fde53891f30d376ff1d16734.tar.gz
CMake-0b69b892edd2c833fde53891f30d376ff1d16734.tar.bz2
ENH: removed TARGET_DIR_PREFIX support
Diffstat (limited to 'Source')
-rw-r--r--Source/cmLocalVisualStudio7Generator.cxx5
1 files changed, 0 insertions, 5 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx
index bc39e53..6a0ab0d 100644
--- a/Source/cmLocalVisualStudio7Generator.cxx
+++ b/Source/cmLocalVisualStudio7Generator.cxx
@@ -1436,11 +1436,6 @@ void cmLocalVisualStudio7Generator::ConfigureFinalPass()
std::string cmLocalVisualStudio7Generator::GetTargetDirectory(cmTarget& target)
{
std::string dir;
- // Put a prefix on the name if one is given by the CMake code.
- if(const char* prefix = m_Makefile->GetDefinition("CMAKE_TARGET_DIR_PREFIX"))
- {
- dir = prefix;
- }
dir += target.GetName();
dir += ".dir";
return dir;