diff options
author | Wil Stark <wil_stark@keysight.com> | 2019-02-19 23:02:34 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-02-25 14:14:15 (GMT) |
commit | 917c035ada212cec47f92b51449b554526119372 (patch) | |
tree | 0aac592abaa8f35ec58acf03a082514241260103 /Source/cmGlobalVisualStudio8Generator.h | |
parent | 7574e16096abe57d44cde4e6380a22d940cde98c (diff) | |
download | CMake-917c035ada212cec47f92b51449b554526119372.zip CMake-917c035ada212cec47f92b51449b554526119372.tar.gz CMake-917c035ada212cec47f92b51449b554526119372.tar.bz2 |
VS: support suppressing deployment of selected targets
Add a `VS_NO_SOLUTION_DEPLOY` target property to explicitly specify for
each target whether to suppress VS solution deployment of the generated
target project.
Fixes: #18953
Diffstat (limited to 'Source/cmGlobalVisualStudio8Generator.h')
-rw-r--r-- | Source/cmGlobalVisualStudio8Generator.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudio8Generator.h b/Source/cmGlobalVisualStudio8Generator.h index 8719bf3..75f4778 100644 --- a/Source/cmGlobalVisualStudio8Generator.h +++ b/Source/cmGlobalVisualStudio8Generator.h @@ -54,7 +54,15 @@ protected: bool AddCheckTarget(); /** Return true if the configuration needs to be deployed */ - virtual bool NeedsDeploy(cmStateEnums::TargetType type) const; + virtual bool NeedsDeploy(cmGeneratorTarget const& target, + const char* config) const; + + /** Returns true if deployment has been disabled in cmake file. */ + bool DeployInhibited(cmGeneratorTarget const& target, + const char* config) const; + + /** Returns true if the target system support debugging deployment. */ + virtual bool TargetSystemSupportsDeployment() const; static cmIDEFlagTable const* GetExtraFlagTableVS8(); void WriteSolutionConfigurations( |