diff options
author | Richard Collins <the.hungarian@gmail.com> | 2016-12-16 17:41:55 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-01-10 15:52:48 (GMT) |
commit | 154def305e7a95d9280573b053170b17539c9f69 (patch) | |
tree | ba4f24e2a00563bada7b31b953f13315c46c506b /Source/cmExtraSublimeTextGenerator.cxx | |
parent | 0a9e4e08b5d275fa20190509d6b1448f360461a8 (diff) | |
download | CMake-154def305e7a95d9280573b053170b17539c9f69.zip CMake-154def305e7a95d9280573b053170b17539c9f69.tar.gz CMake-154def305e7a95d9280573b053170b17539c9f69.tar.bz2 |
Sublime: Do not build with verbose output
Remove the hard-coded use of `make VERBOSE=1` and `ninja -v`.
Diffstat (limited to 'Source/cmExtraSublimeTextGenerator.cxx')
-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; } |