diff options
author | Brad King <brad.king@kitware.com> | 2022-02-17 16:23:02 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-02-17 16:23:02 (GMT) |
commit | 4313c5acbc3b8dbd6ffb4ace198f5b2c72b0c7a5 (patch) | |
tree | 74e3422be845bc28770fae7e4088e361c12495de /Source/cmGlobalVisualStudio10Generator.cxx | |
parent | 77871555de842d837170c9f7add1971385468c40 (diff) | |
download | CMake-4313c5acbc3b8dbd6ffb4ace198f5b2c72b0c7a5.zip CMake-4313c5acbc3b8dbd6ffb4ace198f5b2c72b0c7a5.tar.gz CMake-4313c5acbc3b8dbd6ffb4ace198f5b2c72b0c7a5.tar.bz2 |
VS: Revert "Write ZERO_CHECK.proj for VS19 and above"
Revert commit 925da7d428 (VS: Write ZERO_CHECK.proj for VS19 and above,
2021-12-24). Although its commit message was mistakenly not updated, it
implemented the change for VS 2017 and below too. Since it was merged,
I've discovered several subtle failures in nightly testing with VS 2017.
Revert the change pending further investigation.
Diffstat (limited to 'Source/cmGlobalVisualStudio10Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio10Generator.cxx | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Source/cmGlobalVisualStudio10Generator.cxx b/Source/cmGlobalVisualStudio10Generator.cxx index 28d6295..db54b86 100644 --- a/Source/cmGlobalVisualStudio10Generator.cxx +++ b/Source/cmGlobalVisualStudio10Generator.cxx @@ -1286,13 +1286,6 @@ cmGlobalVisualStudio10Generator::GenerateBuildCommand( return makeCommands; } -bool cmGlobalVisualStudio10Generator::IsInSolution( - const cmGeneratorTarget* gt) const -{ - return gt->IsInBuildSystem() && - gt->GetName() != CMAKE_CHECK_BUILD_SYSTEM_TARGET; -} - bool cmGlobalVisualStudio10Generator::Find64BitTools(cmMakefile* mf) { if (this->DefaultPlatformToolset == "v100") { |