summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudio7Generator.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2004-06-15 12:30:22 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2004-06-15 12:30:22 (GMT)
commit1d061ae896cb9d96898b3161ed9f8cc279fdd6a5 (patch)
treef5a7814f0ec0c703b088ce058edf1d0459278033 /Source/cmGlobalVisualStudio7Generator.cxx
parentb6466061cb06189fa6fdac1e542cb7fbad7dabfd (diff)
downloadCMake-1d061ae896cb9d96898b3161ed9f8cc279fdd6a5.zip
CMake-1d061ae896cb9d96898b3161ed9f8cc279fdd6a5.tar.gz
CMake-1d061ae896cb9d96898b3161ed9f8cc279fdd6a5.tar.bz2
fix include order because of GetCurrentDirectory define and windows.h problem
Diffstat (limited to 'Source/cmGlobalVisualStudio7Generator.cxx')
-rw-r--r--Source/cmGlobalVisualStudio7Generator.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmGlobalVisualStudio7Generator.cxx b/Source/cmGlobalVisualStudio7Generator.cxx
index 0e2cc33..d7301a0 100644
--- a/Source/cmGlobalVisualStudio7Generator.cxx
+++ b/Source/cmGlobalVisualStudio7Generator.cxx
@@ -14,12 +14,12 @@
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
+#include "windows.h" // this must be first to define GetCurrentDirectory
#include "cmGlobalVisualStudio7Generator.h"
#include "cmLocalVisualStudio7Generator.h"
#include "cmGeneratedFileStream.h"
#include "cmMakefile.h"
#include "cmake.h"
-#include "windows.h"
cmGlobalVisualStudio7Generator::cmGlobalVisualStudio7Generator()
@@ -316,7 +316,6 @@ void cmGlobalVisualStudio7Generator::WriteSLNFile(std::ostream& fout,
this->WriteSLNHeader(fout);
// Get the home directory with the trailing slash
-#undef GetCurrentDirectory
std::string homedir = root->GetMakefile()->GetCurrentDirectory();
homedir += "/";
bool doneAllBuild = false;