From 7c0251014ca0fe647f7ef3743db10fa470b03034 Mon Sep 17 00:00:00 2001 From: Andy Cedilnik Date: Thu, 23 Feb 2006 13:46:34 -0500 Subject: COMP: More fixes for visual studio --- Source/cmGlobalGenerator.cxx | 2 +- Source/cmLocalVisualStudio7Generator.cxx | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx index c8f07ea..ade6421 100644 --- a/Source/cmGlobalGenerator.cxx +++ b/Source/cmGlobalGenerator.cxx @@ -695,7 +695,7 @@ void cmGlobalGenerator::Generate() cmTargets::iterator tit; for ( tit = globalTargets.begin(); tit != globalTargets.end(); ++ tit ) { - targets[tit->first] = tit->second; + (*targets)[tit->first] = tit->second; } m_LocalGenerators[i]->Generate(); m_LocalGenerators[i]->GenerateInstallRules(); diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx index 6364f7c..7d76391 100644 --- a/Source/cmLocalVisualStudio7Generator.cxx +++ b/Source/cmLocalVisualStudio7Generator.cxx @@ -163,6 +163,9 @@ void cmLocalVisualStudio7Generator::OutputVCProjFile() && (strncmp(l->first.c_str(), "INCLUDE_EXTERNAL_MSPROJECT", 26) != 0) && (strcmp(l->first.c_str(), "ALL_BUILD") != 0) && (strcmp(l->first.c_str(), "RUN_TESTS") != 0) + && (strcmp(l->first.c_str(), "EDIT_CACHE") != 0) + && (strcmp(l->first.c_str(), "REBUILD_CACHE") != 0) + && (strcmp(l->first.c_str(), "PACKAGE") != 0) && (strcmp(l->first.c_str(), "INSTALL") != 0) && (strcmp(l->first.c_str(), CMAKE_CHECK_BUILD_SYSTEM_TARGET) != 0)) { -- cgit v0.12