summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Stürmer <michael.stuermer@schaeffler.com>2017-03-07 11:40:31 +0100
committerBrad King <brad.king@kitware.com>2017-03-07 09:30:27 -0500
commitbd8b5401cfb2088d5e5494d04236eda36278da8b (patch)
tree8a7d9617c0db188296a02556a26b037b4c8b864d
parente1adec32b8325fb731da084e99acd6070f5e39bf (diff)
downloadcmake-bd8b5401cfb2088d5e5494d04236eda36278da8b.tar.gz
VS: Do not treat custom targets as CSharp targets
Fixes: #16697
-rw-r--r--Source/cmGlobalVisualStudioGenerator.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmGlobalVisualStudioGenerator.cxx b/Source/cmGlobalVisualStudioGenerator.cxx
index cc2536c439..ced0c266b8 100644
--- a/Source/cmGlobalVisualStudioGenerator.cxx
+++ b/Source/cmGlobalVisualStudioGenerator.cxx
@@ -750,6 +750,10 @@ bool cmGlobalVisualStudioGenerator::TargetIsCSharpOnly(
if (!gt->GetConfigCommonSourceFiles(sources)) {
return false;
}
+ // Only "real" targets are allowed to be C# targets.
+ if (gt->Target->GetType() > cmStateEnums::OBJECT_LIBRARY) {
+ return false;
+ }
}
gt->GetLanguages(languages, "");
if (languages.size() == 1) {