diff options
author | Brad King <brad.king@kitware.com> | 2001-03-08 23:24:47 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2001-03-08 23:24:47 (GMT) |
commit | 4f59f98b708e7ff7c65857809c76231e58b94e6f (patch) | |
tree | 32ba5d70ad2faa3601e1020b3211742cb76223d8 /Source/cmMakefile.cxx | |
parent | 1b6afc5c53d29a97dd386d32f0ab1adf70315a24 (diff) | |
download | CMake-4f59f98b708e7ff7c65857809c76231e58b94e6f.zip CMake-4f59f98b708e7ff7c65857809c76231e58b94e6f.tar.gz CMake-4f59f98b708e7ff7c65857809c76231e58b94e6f.tar.bz2 |
ERR: Replaced CMAKE_CFG= with CMAKE_CFG_OUTDIR= to fix windows behavior.
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 4ce9322..673762d 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -533,8 +533,8 @@ void cmMakefile::GenerateCacheOnly() void cmMakefile::AddDefaultDefinitions() { #if defined(_WIN32) && !defined(__CYGWIN__) - this->AddDefinition("CMAKE_CFG","$(CFG)"); + this->AddDefinition("CMAKE_CFG_OUTDIR","$(OUTDIR)"); #else - this->AddDefinition("CMAKE_CFG","."); + this->AddDefinition("CMAKE_CFG_OUTDIR","."); #endif } |