diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-12-06 20:35:22 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-12-06 20:35:22 (GMT) |
commit | b0f4a4cb39927bf5490a5c6e3c0584ca277277c3 (patch) | |
tree | 8f0f5dd7a279cdabf108ab622adfb441a96b9049 /Source/cmGlobalVisualStudio6Generator.cxx | |
parent | 7987ce88cbf5b13eea118e78fa410c0305355280 (diff) | |
download | CMake-b0f4a4cb39927bf5490a5c6e3c0584ca277277c3.zip CMake-b0f4a4cb39927bf5490a5c6e3c0584ca277277c3.tar.gz CMake-b0f4a4cb39927bf5490a5c6e3c0584ca277277c3.tar.bz2 |
ENH: fix IntDir jump and build problem
Diffstat (limited to 'Source/cmGlobalVisualStudio6Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio6Generator.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmGlobalVisualStudio6Generator.cxx b/Source/cmGlobalVisualStudio6Generator.cxx index ea3245a..c19ba04 100644 --- a/Source/cmGlobalVisualStudio6Generator.cxx +++ b/Source/cmGlobalVisualStudio6Generator.cxx @@ -27,6 +27,7 @@ cmGlobalVisualStudio6Generator::cmGlobalVisualStudio6Generator() void cmGlobalVisualStudio6Generator::EnableLanguage(const char* lang, cmMakefile *mf) { + mf->AddDefinition("CMAKE_CFG_INTDIR","$(IntDir)"); mf->AddDefinition("CMAKE_GENERATOR_CC", "cl"); mf->AddDefinition("CMAKE_GENERATOR_CXX", "cl"); this->cmGlobalGenerator::EnableLanguage(lang, mf); |