mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-20 13:22:22 -05:00
Convert: Remove obsolete MAKERULE enum value
This commit is contained in:
@@ -78,9 +78,7 @@ std::string cmOutputConverter::ConvertToOutputFormat(const std::string& source,
|
||||
{
|
||||
std::string result = source;
|
||||
// Convert it to an output path.
|
||||
if (output == MAKERULE) {
|
||||
result = cmSystemTools::ConvertToOutputPath(result.c_str());
|
||||
} else if (output == SHELL || output == WATCOMQUOTE) {
|
||||
if (output == SHELL || output == WATCOMQUOTE) {
|
||||
result = this->ConvertDirectorySeparatorsForShell(source);
|
||||
result = this->EscapeForShell(result, true, false, output == WATCOMQUOTE);
|
||||
} else if (output == RESPONSE) {
|
||||
|
||||
@@ -45,7 +45,6 @@ public:
|
||||
};
|
||||
enum OutputFormat
|
||||
{
|
||||
MAKERULE,
|
||||
SHELL,
|
||||
WATCOMQUOTE,
|
||||
RESPONSE
|
||||
|
||||
Reference in New Issue
Block a user