| 2458 | } |
| 2459 | |
| 2460 | void cmTarget::InsertCompileOption(BT<std::string> const& entry, bool before) |
| 2461 | { |
| 2462 | this->impl->CompileOptions.WriteDirect( |
| 2463 | entry, |
| 2464 | before ? UsageRequirementProperty::Action::Prepend |
| 2465 | : UsageRequirementProperty::Action::Append); |
| 2466 | } |
| 2467 | |
| 2468 | void cmTarget::InsertCompileDefinition(BT<std::string> const& entry) |
| 2469 | { |
no test coverage detected