| 2450 | } |
| 2451 | |
| 2452 | void cmTarget::InsertInclude(BT<std::string> const& entry, bool before) |
| 2453 | { |
| 2454 | this->impl->IncludeDirectories.WriteDirect( |
| 2455 | entry, |
| 2456 | before ? UsageRequirementProperty::Action::Prepend |
| 2457 | : UsageRequirementProperty::Action::Append); |
| 2458 | } |
| 2459 | |
| 2460 | void cmTarget::InsertCompileOption(BT<std::string> const& entry, bool before) |
| 2461 | { |
no test coverage detected