| 907 | } |
| 908 | |
| 909 | void cmLocalUnixMakefileGenerator3::AppendFlags( |
| 910 | std::string& flags, std::string const& newFlags) const |
| 911 | { |
| 912 | if (this->IsWatcomWMake() && !newFlags.empty()) { |
| 913 | std::string newf = newFlags; |
| 914 | if (newf.find("\\\"") != std::string::npos) { |
| 915 | cmSystemTools::ReplaceString(newf, "\\\"", "\""); |
| 916 | this->cmLocalGenerator::AppendFlags(flags, newf); |
| 917 | return; |
| 918 | } |
| 919 | } |
| 920 | this->cmLocalGenerator::AppendFlags(flags, newFlags); |
| 921 | } |
| 922 | |
| 923 | void cmLocalUnixMakefileGenerator3::AppendRuleDepend( |
| 924 | std::vector<std::string>& depends, char const* ruleFileName) |
nothing calls this directly
no test coverage detected