diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-02-24 17:35:35 -0500 |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-02-24 17:35:35 -0500 |
commit | c4156b4531668adc0dc9bf37f42758d6db03ff68 (patch) | |
tree | 37762d0fda6dadd103b9b4dc2f08facd77cffc35 /Source/cmGlobalVisualStudio71Generator.cxx | |
parent | 46757656011165aa8c857523c8770cd0ea80c3da (diff) | |
download | cmake-c4156b4531668adc0dc9bf37f42758d6db03ff68.tar.gz |
COMP: Even more global target fixes
Diffstat (limited to 'Source/cmGlobalVisualStudio71Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio71Generator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudio71Generator.cxx b/Source/cmGlobalVisualStudio71Generator.cxx index 72ce42d3dd..9c050fa37c 100644 --- a/Source/cmGlobalVisualStudio71Generator.cxx +++ b/Source/cmGlobalVisualStudio71Generator.cxx @@ -107,7 +107,7 @@ void cmGlobalVisualStudio71Generator::WriteSLNFile(std::ostream& fout, { if (al->second.IsInAll()) { - if (al->second.GetType() == cmTarget::UTILITY && + if (al->second.GetType() == cmTarget::UTILITY || al->second.GetType() == cmTarget::GLOBAL_TARGET) { l->second.AddUtility(al->first.c_str()); |