diff options
author | Brad King <brad.king@kitware.com> | 2013-08-27 18:15:49 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-08-28 12:57:12 (GMT) |
commit | e478f0346934d3f1e44f62d87861ec5288e703b7 (patch) | |
tree | 94614a497d5a820b78e13f44b7ac97dcbb94e524 /Source/cmGlobalVisualStudio8Generator.h | |
parent | b15ad0d1de7524be3b32d6691b68d3578ee00ca5 (diff) | |
download | CMake-e478f0346934d3f1e44f62d87861ec5288e703b7.zip CMake-e478f0346934d3f1e44f62d87861ec5288e703b7.tar.gz CMake-e478f0346934d3f1e44f62d87861ec5288e703b7.tar.bz2 |
VS: Fix CMAKE_SUPPRESS_REGENERATION bad ZERO_CHECK dependency (#14378)
When CMAKE_SUPPRESS_REGENERATION tells us not to create the ZERO_CHECK
target we should not add dependencies on it from other targets either.
Reviewed-by: Mateusz Loskot <mateusz@loskot.net>
Diffstat (limited to 'Source/cmGlobalVisualStudio8Generator.h')
-rw-r--r-- | Source/cmGlobalVisualStudio8Generator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudio8Generator.h b/Source/cmGlobalVisualStudio8Generator.h index d181742..2376f8a 100644 --- a/Source/cmGlobalVisualStudio8Generator.h +++ b/Source/cmGlobalVisualStudio8Generator.h @@ -71,7 +71,7 @@ protected: virtual bool VSLinksDependencies() const { return false; } - void AddCheckTarget(); + bool AddCheckTarget(); static cmIDEFlagTable const* GetExtraFlagTableVS8(); virtual void WriteSLNHeader(std::ostream& fout); |