summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalVisualStudio7Generator.cxx
diff options
context:
space:
mode:
authorSteven Boswell <ulatekh@yahoo.com>2021-09-03 21:06:27 (GMT)
committerBrad King <brad.king@kitware.com>2021-09-09 18:22:26 (GMT)
commitb284a21fee0907effe08a4314ffa725aa0c7c86e (patch)
treef46dd314bd644b685b45309a48b383ccaacddb27 /Source/cmLocalVisualStudio7Generator.cxx
parented9abd99772cbdcb2e4dd195eb4a62104ce86c95 (diff)
downloadCMake-b284a21fee0907effe08a4314ffa725aa0c7c86e.zip
CMake-b284a21fee0907effe08a4314ffa725aa0c7c86e.tar.gz
CMake-b284a21fee0907effe08a4314ffa725aa0c7c86e.tar.bz2
VS: Add missing label in C# project-build events
Fixes: #21440
Diffstat (limited to 'Source/cmLocalVisualStudio7Generator.cxx')
-rw-r--r--Source/cmLocalVisualStudio7Generator.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx
index 151470b..06d738f 100644
--- a/Source/cmLocalVisualStudio7Generator.cxx
+++ b/Source/cmLocalVisualStudio7Generator.cxx
@@ -566,7 +566,7 @@ public:
} else {
this->Stream << this->LG->EscapeForXML("\n");
}
- std::string script = this->LG->ConstructScript(ccg);
+ std::string script = this->LG->ConstructScript(ccg, unmanaged);
this->Stream << this->LG->EscapeForXML(script);
}
@@ -1779,7 +1779,7 @@ void cmLocalVisualStudio7Generator::WriteCustomRule(
}
std::string comment = this->ConstructComment(ccg);
- std::string script = this->ConstructScript(ccg);
+ std::string script = this->ConstructScript(ccg, unmanaged);
if (this->FortranProject) {
cmSystemTools::ReplaceString(script, "$(Configuration)", config);
}