diff options
author | Brad King <brad.king@kitware.com> | 2021-10-20 16:01:53 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-10-20 17:00:25 (GMT) |
commit | 6999b871335c26d9d39b05023559254b1437bcf5 (patch) | |
tree | 0840adbe902564d85f75cbf92d4fe5a29124bb1c /Source/cmGlobalVisualStudioVersionedGenerator.h | |
parent | 7f730464be485862ba89c85248306c893117a595 (diff) | |
download | CMake-6999b871335c26d9d39b05023559254b1437bcf5.zip CMake-6999b871335c26d9d39b05023559254b1437bcf5.tar.gz CMake-6999b871335c26d9d39b05023559254b1437bcf5.tar.bz2 |
cmGlobalVisualStudio10Generator: Add method to find MSBuild early
Add a way to find MSBuild before the main `FindMakeProgram` code path
has executed.
Diffstat (limited to 'Source/cmGlobalVisualStudioVersionedGenerator.h')
-rw-r--r-- | Source/cmGlobalVisualStudioVersionedGenerator.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmGlobalVisualStudioVersionedGenerator.h b/Source/cmGlobalVisualStudioVersionedGenerator.h index 691651f..b7760ac 100644 --- a/Source/cmGlobalVisualStudioVersionedGenerator.h +++ b/Source/cmGlobalVisualStudioVersionedGenerator.h @@ -31,6 +31,8 @@ public: bool GetVSInstance(std::string& dir) const; + cm::optional<std::string> FindMSBuildCommandEarly(cmMakefile* mf) override; + cm::optional<std::string> GetVSInstanceVersion() const override; AuxToolset FindAuxToolset(std::string& version, |