diff options
author | Steven Boswell <ulatekh@yahoo.com> | 2021-09-03 21:06:27 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-09-09 18:22:26 (GMT) |
commit | b284a21fee0907effe08a4314ffa725aa0c7c86e (patch) | |
tree | f46dd314bd644b685b45309a48b383ccaacddb27 /Source/cmLocalVisualStudioGenerator.h | |
parent | ed9abd99772cbdcb2e4dd195eb4a62104ce86c95 (diff) | |
download | CMake-b284a21fee0907effe08a4314ffa725aa0c7c86e.zip CMake-b284a21fee0907effe08a4314ffa725aa0c7c86e.tar.gz CMake-b284a21fee0907effe08a4314ffa725aa0c7c86e.tar.bz2 |
VS: Add missing label in C# project-build events
Fixes: #21440
Diffstat (limited to 'Source/cmLocalVisualStudioGenerator.h')
-rw-r--r-- | Source/cmLocalVisualStudioGenerator.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/cmLocalVisualStudioGenerator.h b/Source/cmLocalVisualStudioGenerator.h index 91fb6b0..0e7f63f 100644 --- a/Source/cmLocalVisualStudioGenerator.h +++ b/Source/cmLocalVisualStudioGenerator.h @@ -31,7 +31,13 @@ public: virtual ~cmLocalVisualStudioGenerator(); /** Construct a script from the given list of command lines. */ + enum IsManaged + { + unmanaged, + managed + }; std::string ConstructScript(cmCustomCommandGenerator const& ccg, + IsManaged isManaged, const std::string& newline = "\n"); /** Label to which to jump in a batch file after a failed step in a |