| 896 | } |
| 897 | |
| 898 | bool HandleTest(cmTest* test, std::string const& propertyName, |
| 899 | std::string const& propertyValue, bool appendAsString, |
| 900 | bool appendMode, bool remove) |
| 901 | { |
| 902 | // Set or append the property. |
| 903 | if (appendMode) { |
| 904 | test->AppendProperty(propertyName, propertyValue, appendAsString); |
| 905 | } else { |
| 906 | if (remove) { |
| 907 | test->SetProperty(propertyName, nullptr); |
| 908 | } else { |
| 909 | test->SetProperty(propertyName, propertyValue); |
| 910 | } |
| 911 | } |
| 912 | |
| 913 | return true; |
| 914 | } |
| 915 | |
| 916 | bool HandleCacheMode(cmExecutionStatus& status, |
| 917 | std::set<std::string> const& names, |
no test coverage detected
searching dependent graphs…