diff options
author | Cristian Adam <cristian.adam@gmail.com> | 2020-05-24 17:10:12 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-05-27 18:19:03 (GMT) |
commit | 1f791eb1607f0634dfb7aee60e991dfa236b8a27 (patch) | |
tree | f52523a0f45fa816b4c27392d2a7d0658d393c19 /Source/cmLocalGenerator.h | |
parent | 7a40d87036afa10b9ebcefa3ec971072eb456e71 (diff) | |
download | CMake-1f791eb1607f0634dfb7aee60e991dfa236b8a27.zip CMake-1f791eb1607f0634dfb7aee60e991dfa236b8a27.tar.gz CMake-1f791eb1607f0634dfb7aee60e991dfa236b8a27.tar.bz2 |
Multi-Ninja: Fix reusable PCHs for MSVC
Fixes: #20721
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r-- | Source/cmLocalGenerator.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index 9beae61..f2d9145 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -540,6 +540,11 @@ private: void ComputeObjectMaxPath(); bool AllAppleArchSysrootsAreTheSame(const std::vector<std::string>& archs, const char* sysroot); + + void CopyPchCompilePdb(const std::string& config, cmGeneratorTarget* target, + const std::string& ReuseFrom, + cmGeneratorTarget* reuseTarget, + std::vector<std::string> const& extensions); }; #if !defined(CMAKE_BOOTSTRAP) |