summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.cxx
diff options
context:
space:
mode:
authorKyle Edwards <kyle.edwards@kitware.com>2021-05-24 17:40:25 (GMT)
committerKyle Edwards <kyle.edwards@kitware.com>2021-05-24 17:56:59 (GMT)
commit38f2562d5b159cdf7ce4340911c1adb30b3a003e (patch)
tree398a1cbb18c4d3ecb9ee6779070232d70dd441cb /Source/cmMakefile.cxx
parentfe9988add39e732cb8a725fe6f6bca72408ebcfd (diff)
downloadCMake-38f2562d5b159cdf7ce4340911c1adb30b3a003e.zip
CMake-38f2562d5b159cdf7ce4340911c1adb30b3a003e.tar.gz
CMake-38f2562d5b159cdf7ce4340911c1adb30b3a003e.tar.bz2
CMP0082: Check EXCLUDE_FROM_ALL property at generate time
Fixes: #22234
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r--Source/cmMakefile.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index 78cae0e..dd25406 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -1844,7 +1844,7 @@ void cmMakefile::AddSubDirectory(const std::string& srcPath,
}
this->AddInstallGenerator(cm::make_unique<cmInstallSubdirectoryGenerator>(
- subMf, binPath, excludeFromAll, this->GetBacktrace()));
+ subMf, binPath, this->GetBacktrace()));
}
const std::string& cmMakefile::GetCurrentSourceDirectory() const