diff options
author | Brad King <brad.king@kitware.com> | 2017-01-11 14:58:28 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2017-01-11 14:58:28 (GMT) |
commit | 0884c9e46a108e8d7b52f6d96242f147ab12d001 (patch) | |
tree | 514e5cf7a37a98f23eb8f54a0469cfe43387977b /Source | |
parent | ff6a034e0bb7731c97a90afec849d8c80e2a783d (diff) | |
parent | 154def305e7a95d9280573b053170b17539c9f69 (diff) | |
download | CMake-0884c9e46a108e8d7b52f6d96242f147ab12d001.zip CMake-0884c9e46a108e8d7b52f6d96242f147ab12d001.tar.gz CMake-0884c9e46a108e8d7b52f6d96242f147ab12d001.tar.bz2 |
Merge topic 'SublimeText-no-VERBOSE'
154def30 Sublime: Do not build with verbose output
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmExtraSublimeTextGenerator.cxx | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/Source/cmExtraSublimeTextGenerator.cxx b/Source/cmExtraSublimeTextGenerator.cxx index dfefefe..36ba520 100644 --- a/Source/cmExtraSublimeTextGenerator.cxx +++ b/Source/cmExtraSublimeTextGenerator.cxx @@ -323,16 +323,12 @@ std::string cmExtraSublimeTextGenerator::BuildMakeCommand( std::string makefileName = cmSystemTools::ConvertToOutputPath(makefile); command += ", \"/NOLOGO\", \"/f\", \""; command += makefileName + "\""; - command += ", \"VERBOSE=1\", \""; - command += target; - command += "\""; + command += ", \"" + target + "\""; } else if (generator == "Ninja") { std::string makefileName = cmSystemTools::ConvertToOutputPath(makefile); command += ", \"-f\", \""; command += makefileName + "\""; - command += ", \"-v\", \""; - command += target; - command += "\""; + command += ", \"" + target + "\""; } else { std::string makefileName; if (generator == "MinGW Makefiles") { @@ -344,9 +340,7 @@ std::string cmExtraSublimeTextGenerator::BuildMakeCommand( } command += ", \"-f\", \""; command += makefileName + "\""; - command += ", \"VERBOSE=1\", \""; - command += target; - command += "\""; + command += ", \"" + target + "\""; } return command; } |