| 2480 | } |
| 2481 | |
| 2482 | void cmTarget::InsertLinkDirectory(BT<std::string> const& entry, bool before) |
| 2483 | { |
| 2484 | this->impl->LinkDirectories.WriteDirect( |
| 2485 | entry, |
| 2486 | before ? UsageRequirementProperty::Action::Prepend |
| 2487 | : UsageRequirementProperty::Action::Append); |
| 2488 | } |
| 2489 | |
| 2490 | void cmTarget::InsertPrecompileHeader(BT<std::string> const& entry) |
| 2491 | { |
no test coverage detected