| 2472 | } |
| 2473 | |
| 2474 | void cmTarget::InsertLinkOption(BT<std::string> const& entry, bool before) |
| 2475 | { |
| 2476 | this->impl->LinkOptions.WriteDirect( |
| 2477 | entry, |
| 2478 | before ? UsageRequirementProperty::Action::Prepend |
| 2479 | : UsageRequirementProperty::Action::Append); |
| 2480 | } |
| 2481 | |
| 2482 | void cmTarget::InsertLinkDirectory(BT<std::string> const& entry, bool before) |
| 2483 | { |
no test coverage detected