diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2000-11-10 22:13:13 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2000-11-10 22:13:13 (GMT) |
commit | d466664817ae24149f61f4f08ad204ebcc8afae8 (patch) | |
tree | 90507562cd3c09ca7f3dca0b202e2ede9fff5c51 /Source | |
parent | 65a28c7705657c81e77b6a9bfbfedacd1a80d081 (diff) | |
download | CMake-d466664817ae24149f61f4f08ad204ebcc8afae8.zip CMake-d466664817ae24149f61f4f08ad204ebcc8afae8.tar.gz CMake-d466664817ae24149f61f4f08ad204ebcc8afae8.tar.bz2 |
BUG: fix inplace build
Diffstat (limited to 'Source')
-rw-r--r-- | Source/MFCDialog/CMakeSetupDialog.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/MFCDialog/CMakeSetupDialog.cpp b/Source/MFCDialog/CMakeSetupDialog.cpp index 3f057cc..0775857 100644 --- a/Source/MFCDialog/CMakeSetupDialog.cpp +++ b/Source/MFCDialog/CMakeSetupDialog.cpp @@ -247,6 +247,10 @@ void CMakeSetupDialog::OnOK() { // get all the info from the screen this->UpdateData(); + if(m_WhereBuild == "") + { + m_WhereBuild = m_WhereSource; + } // configure the system for VC60 cmWindowsConfigure config; |