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/cmGlobalVisualStudio11Generator.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/cmGlobalVisualStudio11Generator.h')
-rw-r--r-- | Source/cmGlobalVisualStudio11Generator.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGlobalVisualStudio11Generator.h b/Source/cmGlobalVisualStudio11Generator.h index 8b4c8b7..f8cce18 100644 --- a/Source/cmGlobalVisualStudio11Generator.h +++ b/Source/cmGlobalVisualStudio11Generator.h @@ -45,8 +45,8 @@ protected: bool UseFolderProperty() const override; static std::set<std::string> GetInstalledWindowsCESDKs(); - /** Return true if the configuration needs to be deployed */ - bool NeedsDeploy(cmStateEnums::TargetType type) const override; + /** Return true if target system supports debugging deployment. */ + bool TargetSystemSupportsDeployment() const override; private: class Factory; |